/* ══════════════════════════════════════════════════════════════
   ISUNA CREATIVE — DESIGN SYSTEM v2.0
   Premium Corporate Identity — isunacreative.ca
   ══════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --teal: #1B6B6B;
  --teal-dark: #124848;
  --teal-light: #e8f4f4;
  --lime: #5A9E2F;
  --lime-dark: #4a8a25;
  --lime-light: #eaf4dc;

  /* Neutrals */
  --white: #ffffff;
  --off: #f7f9f8;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #0f1923;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.03);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.06), 0 4px 10px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.08), 0 8px 20px rgba(0,0,0,.04);
  --shadow-teal: 0 10px 30px rgba(27,107,107,.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Timing */
  --ease-out: cubic-bezier(.25,.8,.25,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* Legacy compat */
  --dark: var(--gray-900);
  --gray: var(--gray-500);
  --border: var(--gray-200);
  --shadow-sm-old: var(--shadow-sm);
  --shadow-md-old: var(--shadow-md);
  --shadow-lg-old: var(--shadow-lg);
}

/* ─── 2. RESET & BASE ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── 3. TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--gray-900);
}
.heading-xl { font-size: clamp(32px, 5vw, 56px); }
.heading-lg { font-size: clamp(26px, 4vw, 44px); }
.heading-md { font-size: clamp(22px, 3vw, 34px); }
.heading-sm { font-size: 20px; }
.text-lg { font-size: 17px; line-height: 1.8; color: var(--gray-600); }
.text-md { font-size: 15px; line-height: 1.8; color: var(--gray-500); }
.text-sm { font-size: 13px; line-height: 1.7; color: var(--gray-500); }
.text-xs { font-size: 11px; }
em, .accent { color: var(--teal); font-style: normal; }
.white em, .white .accent { color: #a8d878; }

/* ─── 4. LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 80px; }
.section.bg-off { background: var(--off); }
.section.bg-dark { background: var(--gray-900); }
.section.bg-teal { background: linear-gradient(150deg, var(--teal-dark), var(--teal) 55%, #2d8a50); color: white; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.text-center { text-align: center; }

/* ─── 5. LABEL / BADGE ─── */
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 10px;
}
.label.white { color: #a8d878; }
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge-teal { background: var(--teal-light); color: var(--teal); }
.badge-lime { background: var(--lime-light); color: var(--lime-dark); }

/* ─── 6. BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease-out);
}
/* Buttons — dark glass pill style */
.btn-teal,.btn-lime,.btn-outline,.btn-white,.btn-primary,.btn-secondary {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 12px 28px;
  font-size: 13px;
  text-decoration: none;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.btn-primary,.btn-teal {
  background: linear-gradient(135deg,#124848,#1B6B6B);
  color: white;
  border: none;
}
.btn-primary:hover,.btn-teal:hover {
  background: linear-gradient(135deg,#1B6B6B,#2d8a50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,107,107,.3);
}
.btn-secondary,.btn-lime {
  background: linear-gradient(135deg,#4a8a25,#5A9E2F);
  color: white;
  border: none;
}
.btn-secondary:hover,.btn-lime:hover {
  background: linear-gradient(135deg,#5A9E2F,#6db83a);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,158,47,.3);
}
.btn-outline {
  background: linear-gradient(135deg,rgba(18,72,72,.85),rgba(27,107,107,.85));
  color: white;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: linear-gradient(135deg,#1B6B6B,#2d8a50);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,107,107,.25);
}
.btn-outline.white {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
  color: white;
  backdrop-filter: blur(8px);
}
.btn-outline.white:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
}
.btn-white {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-white:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s var(--ease-out);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); }

/* ─── 7. PREMIUM CARDS ─── */
.p-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease-out);
}
.p-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.p-card-header {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.p-card-header.teal { background: linear-gradient(145deg, var(--teal-dark), var(--teal)); }
.p-card-header.lime { background: linear-gradient(145deg, var(--lime-dark), var(--lime)); }
.p-card-header.mixed { background: linear-gradient(145deg, var(--teal), #2d8a50); }
.p-card-header.dark { background: linear-gradient(145deg, var(--gray-900), var(--teal-dark)); }
.p-card-header svg {
  width: 48px;
  height: 48px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
  opacity: .9;
}
.p-card-body { padding: 28px; }
.p-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.35;
}
.p-card-body p { font-size: 14px; color: var(--gray-500); line-height: 1.8; }
.p-card-footer {
  padding: 0 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-card-footer .meta { font-size: 12px; color: var(--gray-400); font-weight: 600; }
.p-card-footer .cta-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .25s;
}
.p-card-footer .cta-link:hover { gap: 8px; }

/* ─── 8. NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s;
}
nav.scrolled { height: 60px; box-shadow: var(--shadow-md); }
.nav-logo img { height: 40px; transition: height .3s; }
nav.scrolled .nav-logo img { height: 34px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: none;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-group {
  display: flex;
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  color: var(--gray-400);
  transition: all .2s;
}
.lang-btn.active { background: white; color: var(--teal); box-shadow: var(--shadow-xs); }
.lang-btn.disabled { color: var(--gray-300); cursor: not-allowed; }
.nav-cta {
  background: linear-gradient(135deg,#124848,#1B6B6B);
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.nav-cta:hover { background: linear-gradient(135deg,#1B6B6B,#2d8a50); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(27,107,107,.25); }
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-700);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 499;
  padding: 100px 32px 32px;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

/* ─── 9. PAGE HERO ─── */
.page-hero {
  background: linear-gradient(150deg, var(--teal-dark), var(--teal) 60%, #2d8a50);
  padding: 72px 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero .label { color: #a8d878; }
.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 54px);
  color: white;
  margin-bottom: 14px;
}
.page-hero h1 em { color: #a8d878; }
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  line-height: 1.8;
}

/* ─── 10. BREADCRUMB ─── */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 80px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 72px;
}
.breadcrumb a { color: var(--teal); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── 11. FORMS ─── */
.form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.fg { margin-bottom: 16px; }
.fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all .2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(27,107,107,.08);
}
.fg textarea { height: 120px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── 12. FOOTER ─── */
footer {
  background: var(--gray-900);
  padding: 56px 80px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s;
}
.soc-btn:hover { background: var(--teal); transform: translateY(-2px); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }

/* ─── 13. WHATSAPP ─── */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1000;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .25s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.12); }
}
.wa-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 66px; top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.wa-btn:hover::after { opacity: 1; }

/* ─── 14. ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ─── 15. LIGHTBOX ─── */
.lightbox { display: none !important; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.lightbox.open { display: flex !important; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: 13px; font-weight: 600; }

/* ─── 16. LANG TOGGLE ─── */
[data-lang="en"], [data-lang="ik"] { display: none !important; }
body.en [data-lang="fr"] { display: none !important; }
body.en [data-lang="en"] { display: block !important; }
body.en span[data-lang="en"] { display: inline !important; }
body.en a[data-lang="en"] { display: block !important; }
body.en .nav-links a[data-lang="en"] { display: inline !important; }
span[data-lang="fr"] { display: inline !important; }
body.en span[data-lang="fr"] { display: none !important; }
select[data-lang] { display: none !important; }
body:not(.en) select[data-lang="fr"] { display: block !important; }
body.en select[data-lang="en"] { display: block !important; }
body.en select[data-lang="fr"] { display: none !important; }
textarea[data-lang] { display: none !important; }
body:not(.en) textarea[data-lang="fr"] { display: block !important; }
body.en textarea[data-lang="en"] { display: block !important; }
body.en textarea[data-lang="fr"] { display: none !important; }

/* ─── 17. LOGO BG ─── */
.logo-bg { position: absolute; background: url(/assets/images/logo-footer.png) no-repeat center/contain; pointer-events: none; z-index: 0; }

/* ─── 18. RESPONSIVE — TABLET ─── */
@media (max-width: 1100px) {
  nav { padding: 0 20px; height: auto; flex-wrap: wrap; }
  .nav-links { width: 100%; order: 3; gap: 0; padding: 6px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; display: flex !important; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { font-size: 11px; white-space: nowrap; padding: 4px 10px; border-bottom: none; }
  .nav-mobile-btn { display: none !important; }
  .mobile-menu { display: none !important; }
  .nav-cta { font-size: 11px; padding: 7px 14px; }
  .section, .page-hero { padding: 48px 24px; }
  .breadcrumb { padding: 10px 24px; margin-top: 90px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  footer { padding: 36px 24px 20px; }
}

/* ─── 19. RESPONSIVE — MOBILE ─── */
@media (max-width: 640px) {
  nav { padding: 0 12px; }
  .nav-links a { font-size: 10px; padding: 3px 7px; }
  .nav-cta { font-size: 10px; padding: 6px 10px; }
  .nav-logo img { height: 30px; }
  .lang-btn { padding: 3px 6px; font-size: 10px; }
  .section, .page-hero { padding: 32px 16px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 14px; }
  h2.sec-title, .heading-md { font-size: 22px; }
  .sec-lead, .text-lg { font-size: 14px; }
  .breadcrumb { margin-top: 80px; padding: 8px 16px; font-size: 11px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 28px 16px 16px; }
  .btn { font-size: 13px; padding: 10px 20px; }
  .submit-btn { font-size: 14px; }
  .wa-btn { width: 48px; height: 48px; bottom: 18px; right: 18px; }
  .wa-btn svg { width: 24px; height: 24px; }
  .lightbox img { max-width: 96vw; max-height: 80vh; }
}

/* ─── 20. REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-btn { animation: none; }
  .p-card:hover, .card:hover { transform: none; }
}

/* ─── 21. SECTION TITLES ─── */
h2.sec-title {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 14px;
}
h2.sec-title.white { color: white; }
.sec-lead {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 40px;
}
.sec-lead.white { color: rgba(255,255,255,.7); }

/* ─── PATCH: Missing component classes ─── */
.client-card-v2{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 1px 3px rgba(0,0,0,.06),0 8px 24px rgba(0,0,0,.04);transition:all .35s;}
.client-card-v2:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(27,107,107,.12);}
.client-card-v2-header{padding:24px 28px;display:flex;align-items:center;gap:16px;}
.client-card-v2-header.teal{background:linear-gradient(145deg,#124848,#1B6B6B);}
.client-card-v2-header.lime{background:linear-gradient(145deg,#4a8a25,#5A9E2F);}
.client-card-v2-header svg{width:32px;height:32px;stroke:#fff;stroke-width:1.5;fill:none;flex-shrink:0;}
.client-card-v2-header h4{font-size:15px;font-weight:700;color:#fff;}
.client-card-v2-body{padding:24px 28px;}
.client-card-v2-body p{font-size:14px;color:#6b7280;line-height:1.8;margin-bottom:16px;}
.client-card-v2-services{list-style:none;padding:0;display:flex;flex-wrap:wrap;gap:6px;}
.client-card-v2-services li{font-size:11px;color:#1B6B6B;font-weight:700;padding:4px 12px;background:#e8f4f4;border-radius:999px;}
.team-card{display:flex;gap:20px;align-items:flex-start;background:#fff;border-radius:16px;padding:28px;box-shadow:0 1px 3px rgba(0,0,0,.06),0 8px 24px rgba(0,0,0,.04);transition:all .35s;}
.team-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(27,107,107,.1);}
.team-avatar{width:56px;height:56px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:900;color:#fff;flex-shrink:0;}
.team-card h4{font-size:16px;font-weight:800;color:#0f1923;}
.team-role{font-size:11px;color:#1B6B6B;font-weight:700;margin:3px 0 10px;text-transform:uppercase;letter-spacing:.05em;}
.team-bio{font-size:13px;color:#6b7280;line-height:1.8;}
.process-step{display:flex;gap:20px;align-items:flex-start;padding:24px;background:#fff;border-radius:12px;margin-bottom:12px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .3s;}
.process-step:hover{box-shadow:0 8px 24px rgba(27,107,107,.08);transform:translateX(4px);}
.process-num{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:17px;font-weight:900;color:#fff;flex-shrink:0;}
.process-step h4{font-size:15px;font-weight:800;color:#0f1923;margin-bottom:4px;}
.process-step p{font-size:13px;color:#6b7280;line-height:1.75;}
.svc-mini{border:none;border-radius:16px;box-shadow:0 1px 3px rgba(0,0,0,.06),0 8px 24px rgba(0,0,0,.04);padding:28px;display:block;text-decoration:none;color:inherit;transition:all .35s;background:#fff;position:relative;overflow:hidden;}
.svc-mini:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(27,107,107,.12);}
.svc-mini-num{font-size:40px;font-weight:900;color:#e8f4f4;line-height:1;}
.svc-mini-icon{width:48px;height:48px;border-radius:8px;display:flex;align-items:center;justify-content:center;margin:10px 0 14px;}
.svc-mini-icon.teal{background:#e8f4f4;}.svc-mini-icon.lime{background:#eaf4dc;}
.svc-mini h3{font-size:16px;font-weight:800;color:#0f1923;margin-bottom:8px;}
.svc-mini p{font-size:13px;color:#6b7280;line-height:1.7;margin-bottom:14px;}
.svc-more{font-size:12px;font-weight:700;color:#1B6B6B;}
.svc-preview{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.card{border:none;border-radius:16px;box-shadow:0 1px 3px rgba(0,0,0,.06),0 8px 24px rgba(0,0,0,.04);padding:28px;background:#fff;transition:all .35s;position:relative;overflow:hidden;}
.card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(27,107,107,.12);}
.card-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.card-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.port-preview{display:grid;grid-template-columns:2fr 1fr;gap:18px;}
.port-item{border-radius:12px;overflow:hidden;position:relative;cursor:pointer;aspect-ratio:4/3;background:#f7f9f8;}
.port-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.port-item:hover img{transform:scale(1.04);}
.port-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(18,72,72,.88) 0%,transparent 55%);display:flex;flex-direction:column;justify-content:flex-end;padding:20px;opacity:0;transition:opacity .3s;}
.port-item:hover .port-overlay{opacity:1;}
.port-tag{display:inline-block;background:#5A9E2F;color:#fff;padding:3px 10px;border-radius:999px;font-size:10px;font-weight:800;margin-bottom:6px;text-transform:uppercase;width:fit-content;}
.checklist{list-style:none;padding:0;}.checklist li{display:flex;gap:12px;align-items:flex-start;padding:10px 0;border-bottom:1px solid #e5e7eb;}.checklist li:last-child{border-bottom:none;}
.chk{width:20px;height:20px;border-radius:50%;background:#e8f4f4;flex-shrink:0;margin-top:2px;}
.gallery-filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px;}
.filter-btn{padding:8px 18px;border-radius:999px;border:1.5px solid #e5e7eb;background:#fff;font-family:inherit;font-size:12px;font-weight:700;cursor:pointer;transition:all .2s;color:#6b7280;}
.filter-btn:hover,.filter-btn.active{background:#1B6B6B;color:#fff;border-color:#1B6B6B;}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px;padding:0 80px 20px;}
.gallery-item{border-radius:12px;overflow:hidden;background:#f7f9f8;border:1px solid #e5e7eb;transition:all .3s;cursor:zoom-in;}
.gallery-item:hover{transform:translateY(-4px);box-shadow:0 10px 25px rgba(0,0,0,.06);}
.gallery-item img{width:100%;display:block;aspect-ratio:4/3;object-fit:cover;}
.gallery-caption{padding:10px 14px;font-size:11px;font-weight:600;color:#6b7280;line-height:1.4;}
.port-card{border-radius:12px;overflow:hidden;border:1px solid #e5e7eb;background:#fff;transition:all .3s;text-decoration:none;display:block;}
.port-card:hover{transform:translateY(-4px);box-shadow:0 10px 25px rgba(0,0,0,.06);}
.port-card img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;}
.port-card-body{padding:14px 16px;}.port-card-body h4{font-size:13px;font-weight:700;color:#0f1923;line-height:1.4;}
.card-tags{display:flex;flex-wrap:wrap;gap:4px;margin:10px 0;}
.tag{background:#e8f4f4;color:#1B6B6B;padding:3px 10px;border-radius:999px;font-size:11px;font-weight:700;}.tag.lime{background:#eaf4dc;color:#4a8a25;}
@media(max-width:1100px){.svc-preview,.card-grid-3{grid-template-columns:1fr 1fr;}.card-grid-2,.port-preview{grid-template-columns:1fr;}.gallery-grid{padding:0 24px 16px;}}
@media(max-width:640px){.svc-preview,.card-grid-3{grid-template-columns:1fr;}.gallery-grid{grid-template-columns:1fr 1fr;gap:10px;}.port-preview{grid-template-columns:1fr;}}
