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

:root {
  --teal:        #136361;
  --teal-dark:   #0e4f4d;
  --teal-light:  #E0F2F1;
  --teal-mid:    #c2e8e6;
  --white:       #ffffff;
  --bg-section:  #f9fafb;
  --text-dark:   #1A1A1A;
  --text-body:   #4A4A4A;
  --text-light:  #7a8a8a;
  --border:      #e2e8e8;
  --green:       #4CAF50;
  --shadow-sm:   0 2px 12px rgba(19,99,97,0.08);
  --shadow-md:   0 8px 32px rgba(19,99,97,0.14);
  --radius-card: 14px;
  --radius-pill: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== NAVBAR ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 70px;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-diamond {
  width: 120px; height: 120px;

  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-diamond span {
  transform: rotate(-45deg);
  color: #fff; font-size: 0.85rem; font-weight: 800;
}
.logo-name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-dark); line-height: 1.2;
}
.logo-sub { font-size: 0.6rem; font-weight: 400; color: var(--text-light); letter-spacing: 0.06em; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-body); padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: all .22s;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-light); }
.nav-links a.active { color: var(--teal); font-weight: 600; }
.nav-cta {
  background: var(--teal) !important;
  color: #fff !important; padding: 9px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; display: block; transition: .3s; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  border-radius: var(--radius-pill);
  border: none; cursor: pointer;
  transition: all .25s;
}
.btn-primary { background: var(--teal); color: #fff; padding: 13px 30px; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(19,99,97,0.25); }
.btn-ghost { background: transparent; color: var(--teal); border: 2px solid var(--teal); padding: 11px 28px; }
.btn-ghost:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal); padding: 13px 30px; }
.btn-white:hover { background: var(--teal-light); }

/* ===================== SECTION LABELS ===================== */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px;
}
.kicker::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; }
.sec-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 14px;
}
.sec-sub { font-size: 0.96rem; color: var(--text-body); max-width: 540px; font-weight: 300; }

/* ===================== PILL TAG ===================== */
.pill-tag {
  display: inline-block;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-dark); padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.83rem; font-weight: 500;
  transition: all .22s; cursor: default;
}
.pill-tag:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===================== SCROLL ANIMATIONS ===================== */
.anim { opacity: 0; will-change: opacity, transform; }
.anim-up    { transform: translateY(36px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.anim-left  { transform: translateX(-44px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.anim-right { transform: translateX(44px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.anim-zoom  { transform: scale(0.9); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.anim-down  { transform: translateY(-28px); transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1); }
.anim.in    { opacity: 1; transform: none !important; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ===================== PAGE HERO BANNER ===================== */
.page-banner {
  background: #F9FAFB;
  padding: 110px 6% 60px;
  position: relative; overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.page-banner-inner { position: relative; z-index: 1; }
.page-banner .badge-small {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.15); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.page-banner h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color:  rgba(255,255,255,0.15); line-height: 1.15; margin-bottom: 14px;
}
.page-banner p { font-size: 1rem; color: rgba(255,255,255,0.78); font-weight: 300; max-width: 520px; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--teal-light);
  padding: 48px 6% 28px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; margin-bottom: 36px;
}
.footer-brand .f-name {
  font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px;
}
.footer-brand .f-tagline { font-size: 0.82rem; color: var(--teal); font-weight: 500; margin-bottom: 14px; }
.footer-brand .f-details { font-size: 0.83rem; color: var(--text-body); line-height: 1.9; }
.footer-brand .f-details a { color: var(--teal); }
.footer-links-col h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-dark); margin-bottom: 14px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links-col ul a { font-size: 0.85rem; color: var(--text-body); transition: color .2s; }
.footer-links-col ul a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--teal-mid); padding-top: 20px;
  text-align: center; font-size: 0.78rem; color: var(--text-light);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 680px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: #fff; padding: 28px 6%; gap: 4px;
    border-top: 1px solid var(--border); z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 12px 16px; }
  .burger { display: flex; }
  footer .footer-inner { flex-direction: column; }
}
