:root {
  /* Original palette */
  --bg:        #080d1c;
  --bg2:       #0d1428;
  --bg3:       #111b38;
  --accent:    #2a4fd4;
  --accent2:   #3d63f5;
  --highlight: #e85d26;
  --white:     #ffffff;
  --grey:      #8898b8;
  --border:    rgba(255,255,255,0.08);
  --card:      rgba(255,255,255,0.04);
  --nav-h:     72px;

  /* Brand design tokens */
  --c-white:      #FFFFFF;
  --c-light-gray: #D6D6D6;
  --c-nav:        #000F2E8F;
  --c-overlay:    #000F2E80;
  --c-blue:       #3D4194;
  --c-green:      #00A859;
  --c-black:      #060606;
  --c-mint:       #39FFA2;
  --c-purple:     #3D4194;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--c-black);
  color: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== UTILITY ===== */
.container { max-width: 1500px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.page-wrap  { padding-top: var(--nav-h); }
.divider    { height: 1px; background: var(--border); }

.label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
  display: block;
}

.heading { font-family: 'Space Grotesk', sans-serif; font-weight: 700; text-transform: uppercase; line-height: 1.05; }
.h1 { font-size: clamp(42px, 6vw, 80px); }
.h2 { font-size: clamp(30px, 4vw, 52px); }
.h3 { font-size: clamp(22px, 3vw, 34px); }
.h4 { font-size: clamp(16px, 2vw, 22px); }
p {
  font-family: 'Inter', sans-serif;
}

.accent-word    { color: var(--accent2); }
.highlight-word { color: var(--highlight); }

/* ===== GLOBAL BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 4px;
}
.btn-primary { background: var(--c-blue); color: var(--c-white); }
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--c-white); border: 1px solid rgba(255,255,255,0.35); border-radius: 4px; }
.btn-outline:hover { border-color: var(--c-blue); color: var(--c-blue); }

.btn-success { background: var(--c-white); color: var(--c-green); }
.btn-success:hover { opacity: 0.88; transform: translateY(-2px); }

/* Hero-specific buttons */
.btn-hero-contact {
  display: inline-flex; align-items: center;
  padding: 10px 60px;
  background: var(--c-purple); color: var(--c-white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  border: none; border-radius: 4px; cursor: pointer;
  text-decoration: none; transition: opacity 0.2s;
}
.btn-hero-contact:hover { opacity: 0.85; }

.btn-hero-view {
  display: inline-flex; 
  align-items: center;
  padding: 10px 60px;
  background: var(--c-white); color: var(--c-green);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  border: none; border-radius: 4px; cursor: pointer;
  text-decoration: none; transition: opacity 0.2s;
  text-align: center;
}
.btn-hero-view:hover { opacity: 0.85; }

/* Site-wide reusable buttons */
.btn-site-primary {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 26px;
  background: var(--c-blue);
  color: var(--c-white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-site-primary:hover { opacity: 0.85; }

.btn-site-outline {
  display: inline-flex; align-items: center;
  margin-top: 18px; padding: 10px 26px;
  background: var(--c-white); color: var(--c-green);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 500;
  border: none; border-radius: 4px; cursor: pointer;
  text-decoration: none; transition: opacity 0.2s;
}
.btn-site-outline:hover { border-color: var(--c-blue); color: var(--c-blue); }

.btn-submit {
  display: inline-flex; align-items: center;
  padding: 11px 40px; background: var(--c-blue); color: var(--c-white);
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
  border: none; border-radius: 4px; cursor: pointer; transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.85; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 20px;
  left: 24px;
  right: 24px;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--c-nav);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(0,15,46,0.96); }

#mainNav {
  position: fixed !important;
  top: 20px !important;
  left: 24px !important;
  right: 24px !important;
  width: auto !important;
  z-index: 1000 !important;
  background: var(--c-nav) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-bottom: none !important;
  transition: background 0.3s ease !important;
}
#mainNav.scrolled { background: rgba(0,15,46,0.96) !important; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 70%; height: 70%; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; line-height: 1; color: var(--c-white);
}
.logo-sub {
  font-size: 9px; font-weight: 500; letter-spacing: 2px;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
  display: block; margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.75); transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-white); }
.nav-links a.active { color: var(--c-white); font-weight: 600; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--c-white); transition: all 0.3s; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu {
  display: none;
  position: fixed;
  top: calc(20px + var(--nav-h));
  left: 24px;
  right: 24px;
  background: rgba(0, 10, 35, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 999;
  padding: 24px 28px;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--c-white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,53,161,0.08) 0%, transparent 70%);
}

.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: var(--grey); margin-bottom: 20px; letter-spacing: 1px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb span { color: var(--c-blue); }

/* ===== FORM ELEMENTS ===== */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group   { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--c-white); padding: 14px 16px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  width: 100%; outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--c-blue); }
.form-group textarea { height: 120px; resize: none; }
.form-group select option { background: var(--bg2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cta-field { 
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  border-bottom: 1px solid #D9D9D9; 
}

.cta-field:first-child {
  padding: 0 0 40px 0;
}

.cta-field input, .cta-field textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #4C4C4C;
  width: 100%;
  padding: 0;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
}
.cta-field input::placeholder, .cta-field textarea::placeholder { color: rgba(255,255,255,0.28); }
.cta-field textarea { height: 56px; resize: none; }
.cta-submit { padding-top: 24px; }

/* ===== FOOTER ===== */
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding: 60px 0;
}
.footer-brand p { font-size: 13px; color: var(--grey); line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--c-white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--grey); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--c-white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-item span { font-size: 13px; color: var(--grey); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--grey); }

.footer-top-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 40px; padding-bottom: 36px;
  gap: 32px; flex-wrap: wrap;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 80px;
}
.footer-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; color: #999999;
  text-decoration: none; transition: color 0.2s;
}
.footer-nav-link:hover { color: #fff; }

.footer-mid-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.footer-scroll-top {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-blue); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 18px; transition: opacity 0.2s;
}
.footer-scroll-top:hover { opacity: 0.8; }

.footer-info-block {
  display: flex; flex-direction: column; gap: 4px;
}
.footer-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #33336B;
}
.footer-info-value {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: #E0DFFE;
}
.footer-link { text-decoration: none; }
.footer-link:hover { color: #fff; }

.footer-socials { display: flex; gap: 12px; margin-left: auto; }
.footer-social-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white); text-decoration: none; transition: border-color 0.2s;
}
.footer-social-btn:hover { border-color: var(--c-blue); }

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
}
.footer-bottom-bar p  { font-size: 12px; color: #33336B; }
.footer-bottom-bar a  { font-size: 12px; color: #33336B; text-decoration: none; transition: color 0.2s; }
.footer-bottom-bar a:hover { color: #fff; }

.social-btns { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 42px; height: 42px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.social-btn:hover { border-color: var(--c-blue); background: rgba(0,53,161,0.2); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up  { animation: fadeUp 0.6s ease both; }
.delay-1  { animation-delay: 0.1s; }
.delay-2  { animation-delay: 0.2s; }
.delay-3  { animation-delay: 0.3s; }
.delay-4  { animation-delay: 0.4s; }

/* =============================================
   HOME PAGE — HERO SLIDER
   ============================================= */
.slider { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 1;
}
.slide.active { opacity: 1; }

.slide-1 { background-image: url("images/slider.png"); }
.slide-2 { background-image: url("images/slider.png"); }
.slide-3 { background-image: url("images/slider.png"); }

.slider-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  margin: 0 auto; left: 0; right: 0;
  padding: 0 45px 80px;
}

.hero-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 70px;
  max-width: 800px;
  color: var(--c-white);
  letter-spacing: -6%;
}
.hero-heading .highlight {
  color: var(--c-mint); font-weight: 500; display: block;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-style:normal;
  font-weight: 400;
  color: var(--c-white);
  max-width: 450px;
  line-height: 1.2em;
  margin: 26px 0;
  letter-spacing: 0;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider arrows */
.slider-arrows {
  position: absolute; right: 48px; bottom: 80px;
  z-index: 4; display: flex; flex-direction: row; gap: 10px;
}
.slider-arrow {
  width: 44px; height: 44px;
  border: 2px solid var(--c-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--c-white);
  background: transparent; transition: all 0.2s; user-select: none;
}
.slider-arrow:hover { background: var(--c-blue); border-color: var(--c-blue); }

/* Slider dots */
.slider-dots { position: absolute; bottom: 62px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 8px; }
.sdot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.sdot.active { background: var(--c-white); width: 22px; border-radius: 3px; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: #FFFFFF;
}
.stats-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 55px 28px;
}
.stats-inner {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.stat-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  flex-shrink: 0;
}

.stat-main-num-wrap {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}
.stat-main-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: #BFBFBF;
  line-height: 1;
  letter-spacing: -4px;
}
.stat-main-plus {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 140px;
  font-weight: 500;
  color: #BFBFBF;
  line-height: 0;
  letter-spacing: -6%;
  margin-top: 6px;
}
.stat-main-label {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: #3D4194;
  font-weight: 400;
  display: block;
  line-height: 120%;
  letter-spacing: -6%;
}
.stat-main-sub {
  font-size: 11px;
  color: #6b7a9a;
  display: block;
  margin-top: 4px;
  font-weight: 500;
}

.stats-partners {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-partners-label {
  margin: 10px 0 0 0;
}

.stats-partners-label > span {
  font-size: 22px;
  font-weight: 500;
  color: #BFBFBF;
  letter-spacing: -6%;
  padding: 0 20px;
}
.stats-partners-label strong {
  color: #3D4194;
  font-weight: 700;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  padding: 0 18px;
}
.partner-badge,
.pb-icon {
  display: none;
}

.partner-logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

.partner-logo-img:hover {
  opacity: 1;
}

.partner-divider {
  width: 1px;
  height: 100%;
  background: #D9D9D9;
  flex-shrink: 0;
}

.partner-logos-viewport {
  overflow: hidden;
  width: 100%;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  width: max-content;
  margin: 0;
  padding: 7px 0 0 0;
  animation: marquee-bounce 8s ease-in-out infinite alternate;
}

/* Bounce: starts flush-left, slides right until the strip hits the right edge */
@keyframes marquee-bounce {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100% + 100vw - 64px)); }
  /* 64px accounts for the left+right page padding (32px each side) */
}

/* Pause on hover — polite UX */
.partner-logos-viewport:hover .partner-logos {
  animation-play-state: paused;
}


/* ── ABOUT + SERVICES ── */
.about-services-wrap {
  background: var(--c-black);
  padding: 150px 0;
}
.about-services {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 45px 0;
}

.about-col {
  max-width: 450px;
  padding: 40px 60px 0 0;
  border-right: 1px solid #D9D9D9;
}
.about-col .about-label {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -6%;
  color: var(--c-purple);
  margin-bottom: 20px;
  display: block;
  line-height: 46px;
}
.about-col p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #D9D9D9;
  line-height: 1.2em;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.services-col {
  width: 100%;
  padding: 0 0 0 20px;
}
.services-col .services-label {
  font-family: 'Space Grotesk', sans-serif;
  display: block;
  font-size: 42px;
  font-weight: 600;
  color: var(--c-purple);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Number sits above/left — use a flex row for num + row */
.svc-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0;
  margin-bottom: 20px;
  align-items: start;
}

.svc-row-num {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #00A859;
  line-height: 1;
  padding-top: 16px;
}

.svc-row {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #061437;
  border: 1px solid #0d2a66;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
  user-select: none;
}
.svc-row:hover,
.svc-row.open {
  background: #0a1d4a;
  border-color: #1a3f8f;
}

.svc-row-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #D9D9D9;
  line-height: 24px;
}

.svc-row-icon {
  font-size: 22px;
  color: var(--c-white);
  line-height: 1;
  transition: transform 0.3s ease, color 0.2s;
  flex-shrink: 0;
}
.svc-row.open .svc-row-icon {
  transform: rotate(45deg);
  color: var(--c-mint);
}

/* Dropdown */
.svc-dropdown {
  grid-column: 2;
  grid-row: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  border: 1px solid #0d2a66;
  border-top: none;
  padding: 0 20px;
  box-sizing: border-box;
}
.svc-dropdown.open {
  max-height: 200px;
  padding: 18px 20px 22px;
}
.svc-dropdown p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #373737;
  line-height: 1.7;
  margin: 0;
}

.svc-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
/* Contact Us below BOTH columns */
.about-services-cta {
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px 32px;
  text-align: center;
}

/* =============================================
   WHY TOPKLAN
   ============================================= */
.why-section {
  background: var(--c-black);
  padding: 0 0 100px 0;
  position: relative;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 45px 0;
  position: relative;
  z-index: 1;
}

.why-left {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  line-height: 70px;
  color: var(--c-white);
  letter-spacing: -6%;
}

.why-left h2 span {
  color: var(--c-blue);
  font-weight: 700;
}

.why-left p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #D9D9D9;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0;
}

.why-ctas { 
  width: 100%;
  display: flex;
  gap: 13px;
  margin: 0 auto;
  padding: 20px 60px;
}

/* Right column — sits on the light panel */
.why-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 0 0 0 20px;
  background: #fff;
}

.why-card {
  padding: 28px 28px 28px 24px;
  background: #f4f5f7;
  border: none;
  border-left: 8px solid #D9D9D9;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.why-card:last-child { margin-bottom: 0; }
.why-card:hover {
  background-color: #000F2E;
  border-left-color: var(--c-blue);
}

.why-card:hover p {
  color: #fff;
}

.why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #373737;
  line-height: 100%;
  font-weight: 400;
}

/* =============================================
   AFFILIATIONS
   ============================================= */
.affil-section {
  padding: 72px 0; 
  background: var(--c-black);
}
.affil-inner { max-width: 1500px; margin: 0 auto; padding: 0 45px 0; }
.affil-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 70px;
  letter-spacing: -6%;
}
.affil-heading span { color: var(--c-blue); display: block; }
.affil-desc {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #D9D9D9;
  line-height: 100%;
  margin-bottom: 50px;
}
.affil-logos-card {
  background: var(--c-white);
  padding: 25px 80px;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.affil-badge-text {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--c-black);
}
.affil-logo-img {
  height: 64px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}
.affil-sep { width: 1px; height: 34px; background: rgba(0,0,0,0.1); }

/* =============================================
   FULL-WIDTH FEATURE IMAGE
   ============================================= */
.feature-img { width: 100%; height: 400px; overflow: hidden; position: relative; }
.feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease; display: block;
}
.feature-img:hover img { transform: scale(1.04); }


/* =============================================
   CTA / CONTACT FORM SECTION
   ============================================= */
.cta-section { padding: 80px 0; background: var(--c-black); }
.cta-inner {
  max-width: 1500px; margin: 0 auto; padding: 0 55px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.cta-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 400;
  text-transform: uppercase; line-height: 70px; margin-bottom: 16px;
  color: #BFBFBF; letter-spacing: -0.6%;
}
.cta-left h2 .teal { color: var(--c-blue); display: block; }
.cta-left p {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #D9D9D9;
  line-height: 100%;
}
.cta-right { 
  display: flex;
  flex-direction: column; 
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page-hero { min-height: 380px; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.about-page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,6,6,0.97) 40%, rgba(6,6,6,0.5)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80') center/cover;
}
.about-page-hero-content { position: relative; z-index: 2; padding: 0 0 60px; width: 100%; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 32px; }
.vm-card { padding: 48px 40px; background: var(--card); border: 1px solid var(--border); }
.vm-card p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-accordion { display: flex; flex-direction: column; gap: 2px; }
.acc-item { border: 1px solid var(--border); overflow: hidden; }
.acc-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; cursor: pointer; background: var(--card); transition: background 0.2s; }
.acc-header:hover { background: rgba(0,53,161,0.1); }
.acc-header-left { display: flex; align-items: center; gap: 20px; }
.acc-num { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--c-blue); letter-spacing: 1px; width: 40px; }
.acc-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; }
.acc-toggle { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s; flex-shrink: 0; }
.acc-item.open .acc-toggle { background: var(--c-blue); border-color: var(--c-blue); transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-item.open .acc-body { max-height: 600px; }
.acc-content { padding: 28px 28px 32px 88px; border-top: 1px solid var(--border); }
.acc-content p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.acc-content ul { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.acc-content ul li { font-size: 13px; color: rgba(255,255,255,0.6); padding-left: 20px; position: relative; }
.acc-content ul li::before { content: '▸'; position: absolute; left: 0; color: var(--c-blue); font-size: 11px; }

/* =============================================
   PROJECTS PAGE
   ============================================= */
.projects-filter { display: flex; gap: 2px; margin-bottom: 32px; }
.filter-btn {
  padding: 10px 22px;
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--card); border: 1px solid var(--border); color: var(--grey);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--c-blue); border-color: var(--c-blue); color: var(--c-white); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.project-card { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity 0.3s;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.project-card-sub { font-size: 11px; color: var(--grey); letter-spacing: 1px; margin-top: 4px; }
.project-card-tag { position: absolute; top: 14px; left: 14px; background: var(--c-blue); padding: 4px 10px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item .label { margin-bottom: 8px; }
.contact-info-item p { font-size: 15px; color: rgba(255,255,255,0.7); }

/* =============================================
   CAREER PAGE
   ============================================= */
.career-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; }
.career-info p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 20px 0 32px; }
.upload-box { background: rgba(255,255,255,0.05); border: 1px dashed var(--border); padding: 24px; text-align: center; cursor: pointer; }
.upload-box .upload-label { font-size: 12px; color: var(--grey); letter-spacing: 1px; }
.upload-box .upload-hint  { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 4px; }

/* ── HERO — full viewport, photo bg ── */
.cs-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cs-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/casestudyhero.png');
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
}
.cs-hero:hover .cs-hero-bg { transform: scale(1.03); }

.cs-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 55px 90px;
  width: 100%;
}

/* Eyebrow / label above hero title */
.cs-hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* Main hero title — Space Grotesk per brand spec */
.cs-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 70px;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
  color: var(--c-white);
}
.cs-hero-title .accent { color: var(--c-blue); }

/* Filter tabs */
.cs-filter-row {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cs-filter-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid #D9D9D9;
  background: var(--c-white);
  color: var(--c-black);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
}
.cs-filter-btn.active {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: var(--c-white);
}
.cs-filter-btn:hover:not(.active) {
  border-color: rgba(255,255,255,0.55);
  color: var(--c-black);
}

/* ── FEATURED CASE STUDY PANEL ── */
.cs-panel-wrap {
  padding: 0 30px 0;
  transform: translateY(-70px);
  position: relative;
  z-index: 5;
}
.cs-panel {
  background: rgba(10, 18, 45, 0.97);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 480px;
}

.cs-panel-left {
  padding: 36px 40px;
}

.cs-panel-meta-row {
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
}

.cs-panel-meta-item {
  margin: 0 0 20px 0;
}

.cs-panel-meta-item .meta-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -6%;
  color: #A1A1A1;
  display: block;
  margin-bottom: 6px;
}
.cs-panel-meta-item .meta-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #D9D9D9;
  font-weight: 500;
  line-height: 1;
}

.cs-section-block {
  margin-bottom: 28px;
}

.cs-section-block h4 {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--c-blue);
  margin-bottom: 10px;
}

.cs-section-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.cs-section-list {
  gap: 6px;
  margin: 0;
  padding: 0;
}
.cs-section-list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #D9D9D9;
  line-height: 1.65;
  position: relative;
  margin: 0 25px;
}

/* Right: building image */
.cs-panel-right {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.cs-panel-img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 6s ease;
}
.cs-panel-right:hover .cs-panel-img { transform: scale(1.05); }
.cs-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,13,28,0.4) 0%, transparent 60%);
}

/* ── IMAGE GALLERY — 3 columns ── */
.cs-gallery {
  padding: 3px 30px 0;
}
.cs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cs-gallery-item {
  position: relative;
  overflow: hidden;
}
.cs-gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: filter 0.3s, transform 0.4s;
  display: block;
}
.cs-gallery-item:hover img {
  transform: scale(1.03);
}
.cs-gallery-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── PLANNING CTA ── */
.cs-planning {
  padding: 72px 0;
  text-align: center;
}
.cs-planning-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 20px;
}
.cs-planning h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.cs-planning h3 span { color: var(--c-blue); }

/* ── MORE CASE STUDIES ── */
.cs-more {
  padding: 90px 30px;
}
.cs-more-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
.cs-more-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 70px;
  letter-spacing: -0.06em;
  color: #BFBFBF;
}
.cs-more-header h2 span { color: var(--c-blue); }

.cs-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cs-more-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.25s;
  background: #000F2E;
}
.cs-more-card:hover { border-color: var(--c-blue); }

.cs-more-card-img-wrap {
  position: relative;
  overflow: hidden;
  padding: 30px 50px;
}
.cs-more-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s, filter 0.3s;
}
.cs-more-card:hover .cs-more-card-img {
  transform: scale(1.05);
  filter: brightness(0.88);
}

.cs-more-card-body {
  padding: 22px 24px;
  background: #000F2E;
  flex: 1;
}
.cs-more-card-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -6%;
  padding: 3px 9px;
  margin-bottom: 10px;
  color: var(--c-white);
}
.cs-more-card-project-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: #A1A1A1;
  display: block;
}
.cs-more-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-white);
  margin-bottom: 8px;
}
.cs-more-card-challenge-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 12px 0 6px;
  display: block;
}
.cs-more-card-body p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2em;
  letter-spacing: -6%;
}

/* ── WHAT PROJECT TEAMS SAY ── */
.cs-testimonial {
  padding: 80px 30px;
}
.cs-testimonial-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
}
.cs-testimonial-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 70px;
  letter-spacing: -0.6%;
  margin: 12px 0 20px;
  color: #BFBFBF;
}
.cs-testimonial-left h2 span { color: var(--c-blue); }
.cs-testimonial-left .sub-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #4C4C4C;
  line-height: 1;
  margin-bottom: 28px;
}
.cs-testimonial-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* ── TESTIMONIAL DOC CARD — stacked paper effect ── */
.cs-testimonial-doc-card {
  position: relative;
  background: #ffffff;
  padding: 36px 32px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transform: rotate(1.5deg);
  z-index: 2;
}

/* Two stacked "paper" sheets behind */
.cs-testimonial-doc-card::before,
.cs-testimonial-doc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #e8e8e8;
  z-index: -1;
}
.cs-testimonial-doc-card::before {
  transform: rotate(-2.5deg) translate(-4px, 6px);
  background: #d4d4d4;
}
.cs-testimonial-doc-card::after {
  transform: rotate(1deg) translate(5px, 8px);
  background: #e0e0e0;
}

.cs-dot {
  width: 9px;
  height: 9px;
  background: #aaaaaa;
  display: block;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cs-dot.active {
  background: #3D4194;
  transform: scale(1.2);
}
.cs-dot:hover:not(.active) {
  background: #888888;
}

/* Fade transition on card swap */
.cs-doc-body,
.cs-testimonial-author-row {
  transition: opacity 0.25s ease;
}
.cs-testimonial-doc-card.fading .cs-doc-body,
.cs-testimonial-doc-card.fading .cs-testimonial-author-row {
  opacity: 0;
}

/* Three dots top-right */
.cs-doc-dots {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.cs-doc-dots span {
  width: 9px;
  height: 9px;
  background: #aaaaaa;
  display: block;
}

/* Body paragraphs — dark text on white */
.cs-doc-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.cs-doc-body p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #737373;
  line-height: 1;
  margin: 0;
}

/* Author row */
.cs-testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.cs-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-author-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  letter-spacing: 0.2px;
}
.cs-author-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: #555555;
  margin-top: 2px;
  display: block;
}

/* Remove old quote mark — hide it if still in markup */
.cs-quote-mark { display: none; }

/* ── FULL-WIDTH FEATURE IMAGE ── */
.cs-feature-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}
.cs-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 8s ease;
}
.cs-feature-img:hover img { transform: scale(1.04); }
.cs-feature-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,13,28,0.75) 0%, transparent 55%);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .stat-main-num    { font-size: 80px; }
  .footer-main      { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .career-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .cta-inner        { grid-template-columns: 1fr; gap: 48px; }
  .stat-main-num    { font-size: 72px; }
  .stats-right      { border-left: none; padding: 16px 0; gap: 24px; width: 100%; justify-content: center; }

  .stats-inner    { flex-direction: column; }
  .stat-main      { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding: 18px 0; width: 100%; }
  .stats-partners { padding: 16px 0; width: 100%; }

  .about-services { grid-template-columns: 1fr; }
  .about-col      { padding: 48px 0 32px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .services-col   { padding: 40px 0 32px; }
  .about-services-cta { padding: 0 32px 56px; }

  .why-inner        { grid-template-columns: 1fr; gap: 0; }
  .why-left         { padding: 56px 0 40px; }
  .why-right        { padding: 0 0 56px; background: transparent; gap: 10px; }
  .why-card         { background: #FFFFFF; border-left-color: #D9D9D9; }
  .why-card p       { color: #373737; }
  .footer-nav-grid  {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
    margin: 0 0 20px 0;
  }
  .footer-mid-row   { gap: 24px; }
  .footer-socials   { margin-left: 0; }

  .cs-panel               { grid-template-columns: 1fr; }
  .cs-panel-right         { min-height: 280px; }
  .cs-more-grid           { grid-template-columns: 1fr; }
  .cs-testimonial-grid    { grid-template-columns: 1fr; }
  .cs-more-header         { flex-direction: column; align-items: flex-start; gap: 14px; }
  .affil-heading {
    font-size: 46px;
    line-height: 50px;
    padding: 0 0 10px 0;
  }
  .affil-desc {
    font-size: 16px;
    line-height: 1.2em;
  }

  .affil-logos-card {
    background: var(--c-white);
    padding: 25px 10px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
  }
  .affil-logo-img {
    max-width: 180px;
  }
  .cta-left h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .cta-left p {
    font-size: 16px;
    font-weight: 400;
    color: #D9D9D9;
    line-height: 1.2em;
  }

  footer .container {
    padding: 20px;
  }

  .footer-info-label {
    font-size: 10px;
  }

  .why-ctas {
    padding: 0 70px;
  }

  .cases {
    color: #fff;
  }
  .cs-panel-wrap {
    transform: translateY(-0px);
  }
  .cs-panel-img {
    object-fit: contain;
  }
  .cs-gallery {
    padding: 20px 0 0 0;
  }
  .cs-planning {
    padding: 20px 0 60px 0;
  }
  .cs-planning-label {
    font-size: 24px;
  }
  .cs-more-header h2 {
    font-size: 32px;
    font-weight: 400;
  }
  .cs-more-card-img-wrap {
    padding: 30px 25px;
  }
  .cs-testimonial-left h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
  }
  .cs-testimonial-left .sub-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #4C4C4C;
    line-height: 1.2em;
  }
  .stats-wrap {
    padding: 28px 30px 28px;
  }
}

@media (max-width: 768px) {
  .container        { padding: 0 20px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .slider-content   { padding: 0 24px 64px; }
  .slider-arrows    { right: 24px; bottom: 64px; }
  .hero-heading     { font-size: 34px !important; line-height: 1.2 !important; }
  .hero-heading .highlight { font-size: 36px !important; }
  .feature-img      { height: 260px; }
  .projects-grid    { grid-template-columns: 1fr 1fr; }
  .vm-grid          { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-main      { grid-template-columns: 1fr; gap: 32px; }
  .acc-content      { padding: 24px; }
}

@media (max-width: 600px) {
  .cs-gallery-grid   { grid-template-columns: 1fr 1fr; }
  .cs-panel-meta-row { grid-template-columns: 1fr 1fr; row-gap: 14px; }
  .footer-top-row   { flex-direction: column; align-items: flex-start; }
  .footer-nav-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px 32px; }
  .footer-mid-row   { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-socials   { flex-direction: row; }
  .stat-main {
    padding: 10px 20px;
  }
  .cs-panel-wrap .container {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .slider-content   { padding: 0 40px 52px; }
  .slider-arrows    { right: 20px; bottom: 8px; }
  .hero-heading     { font-size: 26px !important; }
  .hero-heading .highlight { font-size: 28px !important; }
  .hero-btns        { flex-direction: column; }
  .btn-hero-contact, .btn-hero-view { text-align: center; justify-content: center; }
  .slider-arrow     { width: 38px; height: 38px; font-size: 14px; }
  .projects-grid    { grid-template-columns: 1fr; }

  .stat-main-num  { font-size: 72px; letter-spacing: -3px; }
  .about-col .about-label,
  .services-col .services-label { font-size: 34px; }
  .cs-gallery-grid { grid-template-columns: 1fr; }
  .cs-hero-title   { line-height: 1.15; }
  .stat-main {
    padding: 10px 20px;
  }
  .why-left h2 {
    font-size: 32px;
  }
  .why-left p {
    font-size: 18px;
  }
  .cs-panel-wrap .container {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 320px) {
  .slider-content   { padding: 0 20px 52px; }
  .slider-arrows    { right: 20px; bottom: 52px; }
  .hero-heading     { font-size: 26px !important; }
  .hero-heading .highlight { font-size: 28px !important; }
  .hero-btns        { flex-direction: column; }
  .btn-hero-contact, .btn-hero-view { text-align: center; justify-content: center; }
  .slider-arrow     { width: 38px; height: 38px; font-size: 14px; }
  .projects-grid    { grid-template-columns: 1fr; }

  .stat-main-num  { font-size: 72px; letter-spacing: -3px; }
  .about-col .about-label,
  .services-col .services-label { font-size: 34px; }
  .cs-gallery-grid { grid-template-columns: 1fr; }
  .cs-hero-title   { line-height: 1.15; }
  .stat-main {
    padding: 10px 20px;
  }
  .why-left h2 {
    font-size: 32px;
  }
  .why-left p {
    font-size: 18px;
  }
}

