:root {
  /* Studio Color Tokens */
  --color-paper: #f6f4f1;
  --color-stone: #e4ded2;
  --color-coral: #f95c4b;
  --color-black: #000000;

  --white: #ffffff;
  --text-main: var(--color-black);
  --text-muted: #545048;
  --border-color: #d6cebf;

  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fluid Typography Configurations */
h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 24px); }
h4 { font-size: clamp(16px, 2vw, 18px); }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.section-paper { background-color: var(--color-paper); }
.section-stone { background-color: var(--color-stone); }
.section-black { background-color: var(--color-black); color: var(--white); }

.section-black h1,
.section-black h2,
.section-black h3,
.section-black h4 {
  color: var(--white);
}

/* CORE BLUEPRINT BADGES */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-coral);
  margin-bottom: 16px;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-black .section-desc {
  color: var(--color-stone);
}

/* ACTION BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-coral { background-color: var(--color-coral); color: var(--white); }
.btn-coral:hover { background-color: var(--color-black); transform: translateY(-2px); }

.btn-black { background-color: var(--color-black); color: var(--white); }
.btn-black:hover { background-color: var(--color-coral); transform: translateY(-2px); }

.btn-outline {
  border-color: var(--color-black);
  background: transparent;
  color: var(--color-black);
}
.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--white);
}

/* UTILITY TOP BAR */
.top-bar {
  background-color: var(--color-black);
  color: var(--white);
  font-size: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info-links {
  display: flex;
  gap: 24px;
  list-style: none;
  color: var(--color-stone);
  flex-wrap: wrap;
}

.top-info-links li i {
  color: var(--color-coral);
  margin-right: 6px;
}

/* STICKY NAVIGATION SCHEME */
.navbar {
  position: fixed; /* Changed from sticky to fixed */
  top: 0;
  left: 0;        /* Added to span the full width of the screen */
  right: 0;       /* Added to span the full width of the screen */
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-stone);
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  width: clamp(130px, 15vw, 160px);
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-coral);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-coral);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transition: var(--transition);
}

/* MOBILE SLIDE OVERLAY PANEL */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100%);
  height: 100%;
  background-color: var(--white);
  z-index: 2000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: var(--transition);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-drawer-header .brand-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-black);
}

.mobile-drawer-header .brand-logo span span {
  color: var(--color-coral);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--color-black);
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  padding: 8px 0;
}

.mobile-nav-links a:hover {
  color: var(--color-coral);
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(4px);
}

.drawer-mask.active {
  display: block;
}

/* HERO STRIP WITH WAVE CURVE */
.hero {
  color: var(--white);
  /* Added extra top padding (130px to 180px) to give clearance for the fixed navbar */
  padding: clamp(130px, 14vw, 180px) 0 clamp(40px, 6vw, 80px) 0;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-tagline {
  color: var(--color-coral);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.hero-headline {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--color-black);
}

.hero-headline span {
  color: var(--color-coral);
}

.hero-text {
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.hero-main-graphic {
  width: 100%;
  height: 100%;
}

.hero-main-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ASYMMETRICAL ABOUT & COLLAGE SYSTEM */
.section-about {
  background: var(--color-paper);
}

.about-blueprint-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: start;
}

.about-feature-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--color-paper);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral);
  font-size: 16px;
}

.about-feature-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.about-feature-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.collage-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(14, 1fr);
  height: clamp(380px, 45vw, 480px);
  width: 100%;
}

.collage-block {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  background-color: var(--color-stone);
  box-shadow: var(--shadow-md);
}

.collage-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-main {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
}

.c-sub-top {
  grid-column: 7 / 13;
  grid-row: 3 / 9;
  background-color: var(--color-paper);
  border-color: var(--color-paper);
}

.c-sub-bottom {
  grid-column: 3 / 10;
  grid-row: 8 / 13;
  border-color: var(--color-paper);
}

.collage-badge {
  position: absolute;
  bottom: clamp(10px, 3vw, 30px);
  right: clamp(10px, 2vw, 20px);
  background-color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-coral);
  z-index: 10;
  white-space: nowrap;
}

.collage-badge h4 {
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 4px;
  font-size: 15px;
}

.collage-badge h4 span {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--color-coral);
}

.collage-badge p {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* CORE SERVICE CARDS VERTICAL ROW MATRIX */
.services-row-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}

.service-blueprint-card {
  background-color: var(--white);
  border: 1px solid var(--color-stone);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 32px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-blueprint-card:hover {
  border-color: var(--color-coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blueprint-card-icon {
  font-size: 20px;
  color: var(--color-coral);
  margin-bottom: 20px;
}

.service-blueprint-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-blueprint-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PAGE 1 EXPLICIT TRUST GRID MATRIX */
.why-choose-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-choose-box {
  background-color: var(--white);
  border: 1px solid var(--color-stone);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-choose-box:hover {
  border-color: var(--color-coral);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-choose-box i {
  font-size: 22px;
  color: var(--color-coral);
  margin-bottom: 16px;
  display: block;
}

.why-choose-box h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
}

/* INTEGRATED STRIP MATRIX / MULTI-GRID METRICS SECTION */
.metrics-split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}

.metrics-bullet-list {
  list-style: none;
  margin-top: 24px;
}

.metrics-bullet-list li {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.metrics-bullet-list li i {
  color: var(--color-coral);
  font-size: 14px;
  margin-top: 4px;
}

.metrics-quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quad-metric-cell {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.quad-metric-cell:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--color-coral);
}

.quad-metric-cell h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.quad-metric-cell p {
  font-size: 12px;
  color: var(--color-stone);
  line-height: 1.4;
}

/* HORIZONTAL STEPS WORKFLOW MATRIX WIRE FRAME */
.flow-chain-container {
  position: relative;
  padding: 40px 0;
}

.flow-chain-line {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-stone);
  z-index: 1;
}

.flow-chain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.flow-chain-node {
  text-align: left;
}

.flow-node-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--color-stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 24px;
  transition: var(--transition);
}

.flow-chain-node:hover .flow-node-circle {
  border-color: var(--color-coral);
  background-color: var(--color-coral);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(249, 92, 75, 0.15);
}

.flow-chain-node h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.flow-chain-node p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* HORIZONTAL COUNTER STATS STRIP */
.counter-strip {
  background-color: var(--color-paper);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 48px 0;
}

.counter-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.counter-item h3 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 4px;
}

.counter-item p {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* CHIPS VERTICAL CLUSTER FOR INDUSTRIES */
.industries-cluster-panel {
  padding: 40px 0;
  text-align: center;
}

.blueprint-chips-array {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.blueprint-chip {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.blueprint-chip:hover {
  border-color: var(--color-coral);
  color: var(--color-coral);
  transform: scale(1.02);
}

/* PAGE 2 TRUST BLUEPRINT */
.trust-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 30px);
}

.trust-block {
  border-top: 2px solid var(--color-coral);
  padding-top: 24px;
}

.trust-block h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.trust-block p {
  font-size: 13px;
  color: var(--text-muted);
}

/* PREMIUM FLOATING PHOTO TEAM MATRIX */
.team-blueprint-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 36px);
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.team-profile-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.team-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color);
}

.team-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 340px;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--color-stone);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.11);
  margin-bottom: 24px;
}

.team-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.team-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-image-fallback {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.06);
  user-select: none;
}

.team-image-frame h4 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  z-index: 2;
  letter-spacing: -0.3px;
}

.team-profile-card .role-lbl {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-align: center;
  display: block;
}

.team-profile-card:nth-child(1) .role-lbl { color: var(--color-coral); }
.team-profile-card:nth-child(2) .role-lbl { color: #2e7d32; }

.team-profile-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.team-card-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 8px;
  margin-top: auto;
}

.team-card-socials a {
  font-size: 14px;
  color: #8a857c;
  transition: var(--transition);
}

.team-card-socials a:hover {
  color: var(--color-coral);
}

/* VALUES MATRIX STRIP PANEL */
.values-panel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 32px);
  text-align: center;
}

.values-panel div {
  display: flex;
  align-items: center;
}

.values-panel h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
}

.values-panel i {
  color: var(--color-coral);
  margin-right: 8px;
}

/* FOOTER SCHEME */
.footer {
  background-color: var(--color-black);
  color: var(--white);
  padding: clamp(60px, 8vw, 80px) 0 30px 0;
  font-size: 13px;
}

.footer-grid-blueprint {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 48px);
  margin-bottom: 48px;
}

.footer-brand-side img {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand-side p {
  color: var(--color-stone);
  line-height: 1.6;
  max-width: 300px;
}

.footer-column-block h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: var(--color-coral);
}

.footer-column-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-block a {
  color: var(--color-stone);
}

.footer-column-block a:hover {
  color: var(--white);
  padding-left: 2px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: var(--color-coral);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--color-stone);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 2px;
}

.footer-col ul style {
  color: var(--color-stone);
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-stone);
}

.footer-col ul li i {
  margin-top: 4px;
}

.footer-base-line {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(228, 222, 210, 0.4);
  font-size: 12px;
}

.footer-base-links {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (ALL DEVICES MATRIX)
   ========================================================================== */

/* Ultra Wide & Large Desktops Monitor Adjustments */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

/* Notebooks & Standard Laptop Breaks */
@media (max-width: 1200px) {
  .why-choose-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-matrix {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium / Landscape Tablets & Ipads (Collapse Main Menus) */
@media (max-width: 992px) {
  .top-bar { display: none; } /* Hide heavy desktop bar on viewports below desktop layout */
  
  .navbar { padding: 14px 0; }
  
  .nav-menu, 
  .nav-actions { 
    display: none !important; 
  }
  
  .nav-toggle { 
    display: flex; 
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 80px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual-frame {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-blueprint-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .collage-container {
    max-width: 600px;
    margin: 0 auto;
    height: 400px;
  }

  .metrics-split-panel {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-choose-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-chain-line {
    display: none;
  }

  .flow-chain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .flow-chain-node {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid-blueprint {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Tablets / Portrait E-Readers & Mobile Landscapes */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  
  .counter-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .team-blueprint-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

/* Global Mobile viewports & Smartphones protection loops */
@media (max-width: 576px) {
  .container { padding: 0 20px; }

  .hero { padding-top: 20px; }

  .why-choose-layout,
  .trust-matrix,
  .flow-chain-grid,
  .footer-grid-blueprint {
    grid-template-columns: 1fr;
  }

  .metrics-quad-grid {
    grid-template-columns: 1fr;
  }

  .counter-strip-grid {
    grid-template-columns: 1fr;
  }

  .collage-container {
    height: 320px;
  }

  .blueprint-chips-array {
    gap: 8px;
  }

  .blueprint-chip {
    padding: 10px 14px;
    font-size: 12px;
  }

  .footer-base-line {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Extreme Low-Width Breakpoint Defenses (e.g., Samsung Galaxy Fold) */
@media (max-width: 360px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .collage-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    display: inline-block;
  }
}