*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #fafaf7;
  --white: #ffffff;
  --ink: #111110;
  --ink-2: #2c2c2a;
  --ink-3: #4a4a47;
  --ink-4: #6b6b68;
  --ink-5: #9a9a96;
  --border: rgba(17, 17, 16, 0.08);
  --border-md: rgba(17, 17, 16, 0.14);
  --accent: #1a56e8;
  --accent-light: #ebf0fd;
  --accent-mid: #3b6fef;
  --green: #0e8f5a;
  --green-light: #e6f5ee;
  --amber: #c4760a;
  --amber-light: #fdf3e1;
  --purple: #6b21a8;
  --purple-light: #f5edff;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(0, 0, 0, 0.05);
  --font: "DM Sans", system-ui, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 131, 246, 0.096) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 131, 246, 0.096) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 131, 246, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 131, 246, 0.22) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-3);
  transition:
    background 0.18s,
    color 0.18s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--accent-light);
  color: var(--accent);
}
.nav-cta {
  padding: 0.5rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    background 0.18s,
    transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-mid);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 890;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0.5rem;
  overflow-y: auto;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover {
  background: var(--accent-light);
  color: var(--accent);
}
.nav-mobile-cta {
  margin-top: 0.5rem;
  background: var(--accent) !important;
  color: #fff !important;
  text-align: center;
  border-radius: var(--r);
  border-bottom: none !important;
}
section {
  padding: 96px 2rem;
}
.inner {
  max-width: 1160px;
  margin: 0 auto;
}
.inner-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 400;
}
.section-heading em {
  font-style: italic;
  color: var(--accent);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-4);
  line-height: 1.75;
  margin-top: 0.9rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.6rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(26, 86, 232, 0.28);
  font-family: var(--font);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 232, 0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--border-md);
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  font-family: var(--font);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-1px);
}
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.about-hero {
  padding: 120px 2rem 80px;
  background: linear-gradient(
    160deg,
    #f4f7ff 0%,
    var(--white) 45%,
    #f5faf7 100%
  );
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 86, 232, 0.055) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.about-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 143, 90, 0.045) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.about-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--green-light);
  border: 1px solid rgba(14, 143, 90, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  color: var(--ink);
  line-height: 1.13;
  margin-bottom: 1.3rem;
  font-weight: 400;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.about-hero-lead {
  font-size: 1.1rem;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats-strip {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}
.h-stat {
  flex: 1;
  padding: 1.3rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.h-stat:last-child {
  border-right: none;
}
.h-stat-num {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.h-stat-label {
  font-size: 0.78rem;
  color: var(--ink-5);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.hero-logo-card {
  width: 100%;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow:
    0 10px 30px rgba(26, 86, 232, 0.15),
    0 20px 60px rgba(26, 86, 232, 0.1),
    0 30px 80px rgba(26, 86, 232, 0.08);
  text-align: center;
  animation: float-gentle 7s ease-in-out infinite;
  transform: rotateY(-5deg) rotateX(5deg);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.hero-logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 86, 232, 0.03) 0%,
    transparent 50%,
    rgba(26, 86, 232, 0.02) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-logo-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
  box-shadow:
    0 15px 40px rgba(26, 86, 232, 0.2),
    0 25px 70px rgba(26, 86, 232, 0.15),
    0 35px 90px rgba(26, 86, 232, 0.1);
}
.hero-logo-card > * {
  position: relative;
  z-index: 1;
}
@keyframes float-gentle {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(3deg) translateY(-12px);
  }
}
.logo-display {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  margin: 0 auto 1.2rem;
  overflow: hidden;
}
.logo-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.logo-name span {
  color: var(--accent);
  font-style: italic;
}
.logo-tagline {
  font-size: 0.85rem;
  color: var(--ink-5);
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
.logo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.logo-badge {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
}
.lb-green {
  background: var(--green-light);
  color: var(--green);
}
.lb-blue {
  background: var(--accent-light);
  color: var(--accent);
}
.lb-amber {
  background: var(--amber-light);
  color: var(--amber);
}
.lb-purple {
  background: var(--purple-light);
  color: var(--purple);
}
.hero-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
.hero-chip svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.chip-1 {
  top: 10px;
  right: -20px;
  animation: float-gentle 5s ease-in-out infinite 0.3s;
}
.chip-2 {
  bottom: 40px;
  left: -30px;
  animation: float-gentle 6s ease-in-out infinite 0.8s;
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.story-section {
  background: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.story-left h2 {
  margin-bottom: 1.6rem;
}
.story-para {
  font-size: 0.98rem;
  color: var(--ink-3);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.story-para:last-of-type {
  margin-bottom: 0;
}
.story-pull {
  border-left: 3px solid var(--accent);
  padding: 1.1rem 1.5rem;
  margin: 1.8rem 0;
  background: var(--white);
  border-radius: 0 var(--r) var(--r) 0;
}
.story-pull p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent-mid);
  line-height: 1.5;
  font-style: italic;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 1.2rem;
  padding-bottom: 2.2rem;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item:last-child .tl-line {
  display: none;
}
.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-4);
  flex-shrink: 0;
  transition: all 0.3s;
  z-index: 1;
}
.timeline-item:hover .tl-dot {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.tl-line {
  width: 1px;
  flex: 1;
  background: var(--border-md);
  margin-top: 4px;
}
.tl-right {
  padding-top: 0.6rem;
}
.tl-year {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.tl-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.tl-desc {
  font-size: 0.85rem;
  color: var(--ink-4);
  line-height: 1.6;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.vc-blue::after {
  background: var(--accent);
}
.vc-green::after {
  background: var(--green);
}
.vc-amber::after {
  background: var(--amber);
}
.vc-purple::after {
  background: var(--purple);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card:hover::after {
  transform: scaleX(1);
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.vi-blue {
  background: var(--accent-light);
}
.vi-green {
  background: var(--green-light);
}
.vi-amber {
  background: var(--amber-light);
}
.vi-purple {
  background: var(--purple-light);
}
.value-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vi-blue svg {
  stroke: var(--accent);
}
.vi-green svg {
  stroke: var(--green);
}
.vi-amber svg {
  stroke: var(--amber);
}
.vi-purple svg {
  stroke: var(--purple);
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--ink-4);
  line-height: 1.7;
}
.team-section {
  background: var(--cream);
}
.team-intro {
  max-width: 600px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-avatar-wrap {
  position: relative;
  background: var(--accent-light);
  aspect-ratio: 1;
  overflow: hidden;
}
.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-avatar-fallback {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  background: var(--accent-light);
  font-style: italic;
}
.team-info {
  padding: 1.3rem 1.4rem;
}
.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.team-expertise {
  font-size: 0.8rem;
  color: var(--ink-5);
}
.team-social {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.team-social a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.team-social a:hover {
  background: var(--accent-light);
}
.team-social a svg {
  width: 12px;
  height: 12px;
  fill: var(--ink-4);
}
.team-social a:hover svg {
  fill: var(--accent);
}
.why-section {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-left h2 {
  margin-bottom: 1rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.wi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wi-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-item h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.why-item p {
  font-size: 0.88rem;
  color: var(--ink-4);
  line-height: 1.65;
}
.msme-card,
.loc-map,
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.4rem;
  box-shadow: var(--shadow-lg);
}
.msme-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.msme-seal {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.msme-seal svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.msme-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.msme-sub {
  font-size: 0.82rem;
  color: var(--ink-5);
  margin-top: 2px;
}
.msme-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.msme-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.msme-row:last-child {
  border-bottom: none;
}
.msme-row-label {
  color: var(--ink-4);
}
.msme-row-val {
  font-weight: 500;
  color: var(--ink-2);
}
.badge-green {
  background: var(--green-light);
  color: var(--green);
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}
.badge-blue {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}
.msme-note {
  font-size: 0.78rem;
  color: var(--ink-5);
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}
.numbers-section {
  background: var(--ink);
  padding: 80px 2rem;
}
.numbers-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.numbers-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #fff;
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 400;
}
.numbers-heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.number-item {
  padding: 2.4rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.number-item:last-child {
  border-right: none;
}
.number-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.015);
  opacity: 0;
  transition: opacity 0.3s;
}
.number-item:hover::before {
  opacity: 1;
}
.n-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.n-num span {
  color: var(--accent-light);
}
.n-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.n-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.3rem;
}
.process-section {
  background: var(--cream);
}
.process-center {
  text-align: center;
}
.process-sub {
  max-width: 560px;
  margin: 0.9rem auto 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-md),
    var(--accent),
    var(--border-md),
    transparent
  );
  z-index: 0;
  pointer-events: none;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-4);
  margin: 0 auto 1.2rem;
  transition: all 0.3s;
}
.process-step:hover .p-num {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--ink-4);
  line-height: 1.65;
}
.location-section {
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.loc-map {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-map-inner {
  text-align: center;
  padding: 2rem;
}
.loc-pin {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26, 86, 232, 0.35);
}
.loc-pin svg {
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.loc-map-inner h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.loc-map-inner p {
  font-size: 0.88rem;
  color: var(--ink-4);
}
.loc-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border-md) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.7;
  pointer-events: none;
}
.loc-info h2 {
  margin-bottom: 1rem;
}
.loc-info .section-sub {
  margin-bottom: 2rem;
}
.loc-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.loc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.loc-item-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.loc-item-val {
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 500;
}
.loc-item-val a {
  color: var(--ink-2);
  transition: color 0.2s;
}
.loc-item-val a:hover {
  color: var(--accent);
}
.cta-section {
  background: var(--ink);
  padding: 80px 2rem;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
}
.cta-inner h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.15s;
  font-family: var(--font);
}
.btn-white:hover {
  background: #f0f0ee;
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  font-family: var(--font);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
.footer {
  background: #2c2c2a;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 2rem 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand-name img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 260px;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: fill 0.2s ease;
}
.footer-social a[aria-label*="LinkedIn"] {
  color: #0077b5;
  background: rgba(0, 119, 181, 0.12);
}
.footer-social a[aria-label*="LinkedIn"]:hover {
  color: #fff;
  background: #0077b5 !important;
}
.footer-social a[aria-label*="Instagram"] {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.12);
}
.footer-social a[aria-label*="Instagram"]:hover {
  color: #fff;
  background: #e1306c !important;
}
.footer-social a[aria-label*="Reddit"] {
  color: #ff4500;
  background: rgba(255, 69, 0, 0.12);
}
.footer-social a[aria-label*="Reddit"]:hover {
  color: #fff;
  background: #ff4500 !important;
}
.footer-social a[aria-label*="Facebook"] {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.12);
}
.footer-social a[aria-label*="Facebook"]:hover {
  color: #fff;
  background: #1877f2 !important;
}
.footer-social a[aria-label*="Twitter"],
.footer-social a[aria-label*="X"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.footer-social a[aria-label*="Twitter"]:hover,
.footer-social a[aria-label*="X"]:hover {
  color: #000;
  background: #ffffff !important;
}
.footer-social a[aria-label*="WhatsApp"] {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}
.footer-social a[aria-label*="WhatsApp"]:hover {
  color: #fff;
  background: #25d366 !important;
}
.footer-col h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    display: block;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-logo-card {
    transform: none;
    animation: float-gentle 7s ease-in-out infinite;
  }
  @keyframes float-gentle {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 64px 1.25rem;
  }
  .nav {
    padding: 0 1.25rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .about-hero {
    padding: 96px 1.25rem 64px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats-strip {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .h-stat {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-visual {
    display: block;
    margin-top: 1.5rem;
    max-width: 100%;
  }
  .hero-logo-card {
    padding: 1.5rem;
    transform: none;
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-visual {
    margin-top: 1rem;
  }
  .hero-logo-card {
    padding: 1.2rem;
  }
}
