*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
:root {
  --brand: #0d6e7c;
  --brand-dark: #094f5a;
  --brand-deep: #062f36;
  --accent: #f4a847;
  --accent2: #e8773a;
  --bg: #f7f9f8;
  --surface: #ffffff;
  --text: #0f1c1e;
  --muted: #5a7070;
  --border: #d8e8ea;
  --nav-h: 70px;
}
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(6, 47, 54, 0.07);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #e6f4f6;
  color: var(--brand);
}
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--brand-dark);
}
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav-ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-ham.open span:nth-child(2) {
  opacity: 0;
}
.nav-ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 2px;
  padding: 1rem;
  z-index: 99;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition:
    background 0.12s,
    color 0.12s;
}
.mobile-menu a:hover {
  background: #e6f4f6;
  color: var(--brand);
}

/* TRUST BAR */
.trust-bar {
  background: var(--brand-deep);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.trust-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.trust-track span.dot {
  color: var(--accent);
  font-size: 1rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ANIMATIONS */
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.08);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.about-hero {
  min-height: 56vh;
  padding: calc(var(--nav-h) + 5rem) 5% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 70% 40%,
      rgba(13, 110, 124, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 20% 80%,
      rgba(244, 168, 71, 0.07) 0%,
      transparent 60%
    );
  z-index: 0;
}
.hs {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hs1 {
  width: 320px;
  height: 320px;
  background: rgba(13, 110, 124, 0.06);
  top: -60px;
  right: 10%;
  animation: float1 8s ease-in-out infinite;
}
.hs2 {
  width: 180px;
  height: 180px;
  background: rgba(244, 168, 71, 0.09);
  bottom: 10%;
  right: 20%;
  animation: float2 6s ease-in-out infinite;
}
.hs3 {
  width: 80px;
  height: 80px;
  background: rgba(13, 110, 124, 0.12);
  top: 30%;
  left: 5%;
  animation: float3 7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6f4f6;
  border: 1px solid rgba(13, 110, 124, 0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--brand-deep);
  margin-bottom: 0.6rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--brand);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  padding: 0.75rem 2rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(13, 110, 124, 0.3);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 110, 124, 0.4);
}
.btn-secondary {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #e6f4f6;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-visual-frame {
  width: 380px;
  height: 420px;
  position: relative;
}
.hv-main {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 280px;
  height: 340px;
  border-radius: 20px;
  background: var(--brand-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 24px 60px rgba(6, 47, 54, 0.22);
  animation: float1 7s ease-in-out infinite;
}
.hv-logo-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(244, 168, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-logo-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(244, 168, 71, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-logo-inner img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.hv-text {
  text-align: center;
}
.hv-text span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.hv-text small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  margin-top: 2px;
  display: block;
}
.hv-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1.5rem;
}
.hv-pill {
  padding: 0.25rem 0.75rem;
  background: rgba(244, 168, 71, 0.12);
  border: 1px solid rgba(244, 168, 71, 0.25);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hv-float-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(6, 47, 54, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: float2 6s ease-in-out infinite;
}
.hv-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-deep);
}
.hv-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.hv-accent-card {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 110px;
  height: 80px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(244, 168, 71, 0.4);
  animation: float3 8s ease-in-out infinite;
}
.hv-accent-card span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-deep);
  opacity: 0.8;
}
.hv-accent-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-deep);
}

/* SECTION COMMON */
section {
  padding: 5rem 5%;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

/* STATS ROW */
.stats-section {
  background: var(--brand-deep);
  padding: 3.5rem 5%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
}
.stat-num span {
  color: var(--accent);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* WHO WE ARE */
.who-section {
  background: var(--surface);
  padding: 6rem 5%;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.who-visual {
  position: relative;
}
.who-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-frame-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--border) 0px,
      var(--border) 1px,
      transparent 1px,
      transparent 32px
    ),
    repeating-linear-gradient(
      90deg,
      var(--border) 0px,
      var(--border) 1px,
      transparent 1px,
      transparent 32px
    );
  opacity: 0.4;
}
.who-frame-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.who-logo-big {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(13, 110, 124, 0.18));
}
.who-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2rem;
}
.who-pill {
  padding: 0.35rem 1rem;
  background: #e6f4f6;
  border: 1px solid rgba(13, 110, 124, 0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--brand);
}

.who-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(244, 168, 71, 0.4);
}
.who-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brand-deep);
}
.who-badge span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-deep);
  opacity: 0.75;
}

.who-content {
}
.who-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-dot svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

/* MISSION & VALUES */
.mv-section {
  background: var(--bg);
  padding: 6rem 5%;
}
.mv-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-card {
  border-radius: 20px;
  padding: 2.8rem;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6, 47, 54, 0.1);
  border-color: rgba(13, 110, 124, 0.25);
}
.mv-card:hover::before {
  transform: scaleX(1);
}
.mv-card.dark-card {
  background: var(--brand-deep);
  border-color: transparent;
}
.mv-card.dark-card::before {
  background: var(--accent);
}

.mv-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #e6f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.mv-card.dark-card .mv-icon {
  background: rgba(255, 255, 255, 0.1);
}
.mv-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mv-card.dark-card .mv-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.mv-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.6rem;
}
.mv-card.dark-card .mv-label {
  color: var(--accent);
}
.mv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.mv-card.dark-card .mv-title {
  color: #fff;
}
.mv-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}
.mv-card.dark-card .mv-desc {
  color: rgba(255, 255, 255, 0.6);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.value-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.value-text strong {
  color: #fff;
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

/* TESTIMONIAL */
.testimonial-section {
  background: var(--brand-deep);
  padding: 5rem 5%;
  text-align: center;
}
.testimonial-section .section-label {
  color: var(--accent);
}
.testimonial-section .section-title {
  color: #fff;
  margin: 0 auto 3rem;
  max-width: 500px;
}
.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  position: relative;
}
.tq-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: -10px;
  left: 2rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-deep);
}
.author-info strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.author-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

/* CTA */
.cta-section {
  background: var(--bg);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.cta-card {
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-card.light {
  background: var(--surface);
  border: 1px solid var(--border);
}
.cta-card.dark {
  background: var(--brand-deep);
}
.cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-card.light .cta-card-icon {
  background: #e6f4f6;
}
.cta-card.dark .cta-card-icon {
  background: rgba(255, 255, 255, 0.1);
}
.cta-card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
  fill: none;
}
.cta-card.light .cta-card-icon svg {
  stroke: var(--brand);
}
.cta-card.dark .cta-card-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}
.cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cta-card.light .cta-label {
  color: var(--brand);
}
.cta-card.dark .cta-label {
  color: var(--accent);
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.cta-card.light .cta-title {
  color: var(--brand-deep);
}
.cta-card.dark .cta-title {
  color: #fff;
}
.cta-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-card.light .cta-desc {
  color: var(--muted);
}
.cta-card.dark .cta-desc {
  color: rgba(255, 255, 255, 0.55);
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  background: var(--accent);
  color: var(--brand-deep);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn-accent:hover {
  background: #e09830;
  transform: translateY(-2px);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* FOOTER */
.footer {
  background: var(--brand-deep);
  padding: 3rem 5% 2rem;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.f-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
}
.f-social-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.f-social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-sub {
    margin: 0 auto 2.5rem;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .who-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .who-visual {
    display: none;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-section {
    grid-template-columns: 1fr;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
}
@media (max-width: 600px) {
  section {
    padding: 3.5rem 5%;
  }
  .stats-section {
    padding: 2.5rem 5%;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  .cta-card {
    padding: 2rem;
  }
}
.trust-bar {
  position: sticky;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 90; /* Ensures it stays on top of other content */
}
