/* =========================================================
   FinSecure Advisory — Design System
   v2.0 — full visual refresh
   Palette taken from the logo: teal #20BEC6, charcoal #6D6E71
   ========================================================= */

/* ---------- Tokens ---------- */
:root{
  /* Brand */
  --teal:        #20BEC6;   /* logo teal */
  --teal-deep:   #0E8F97;   /* accessible on white */
  --teal-dark:   #0A6F76;
  --teal-soft:   rgba(32,190,198,.10);
  --teal-line:   rgba(32,190,198,.28);

  /* Ink / neutrals */
  --ink:         #0E1C26;   /* header bar, footer, dark bands */
  --ink-2:       #16303F;
  --ink-3:       #1E4257;
  --text:        #12181D;
  --muted:       #566068;
  --muted-2:     #7A848C;
  --line:        #E4E9ED;
  --line-strong: #CDD6DC;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FA;
  --bg-soft-2:   #EEF4F7;

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Shape */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(14,28,38,.06), 0 2px 8px rgba(14,28,38,.05);
  --shadow:    0 2px 4px rgba(14,28,38,.05), 0 12px 28px rgba(14,28,38,.08);
  --shadow-lg: 0 4px 8px rgba(14,28,38,.06), 0 24px 56px rgba(14,28,38,.13);

  --max: 1200px;
  --utilH: 40px;
  --headerH: 76px;

  --focus: 0 0 0 3px rgba(32,190,198,.40);
}

/* ---------- Reset / base ---------- */
*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top: calc(var(--headerH) + 16px);
  -webkit-text-size-adjust: 100%;
}

body{
  margin:0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width:100%; display:block; }
a{ color: var(--teal-deep); }

h1,h2,h3,h4{
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 14px;
}

h1{ font-size: clamp(34px, 4.6vw, 54px); }
h2{ font-size: clamp(26px, 3.2vw, 38px); }
h3{ font-size: clamp(18px, 2vw, 21px); font-family: var(--font-body); font-weight: 650; letter-spacing: -0.01em; }
h4{ font-size: 16px; font-family: var(--font-body); font-weight: 650; }

p{ margin: 0 0 14px; }
p:last-child{ margin-bottom: 0; }

ul,ol{ margin: 0 0 14px; padding-left: 20px; }
li{ margin: 7px 0; }

strong{ color: var(--text); font-weight: 600; }

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.container-wide{ max-width: 1360px; }

/* ---------- Accessibility ---------- */
.skip-link{
  position:absolute; left:-9999px; top:8px;
  padding:10px 14px; background:#fff; color: var(--text);
  border:1px solid var(--line-strong); border-radius: var(--r-sm);
  box-shadow: var(--shadow); z-index: 4000; font-weight:600;
}
.skip-link:focus{ left: 14px; outline:none; box-shadow: var(--focus), var(--shadow); }

:focus-visible{ outline:none; box-shadow: var(--focus); border-radius: 8px; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* =========================================================
   HEADER
   ========================================================= */

/* --- Utility bar --- */
.util-bar{
  background: var(--ink);
  color: rgba(255,255,255,.80);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.util-inner{
  min-height: var(--utilH);
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px; flex-wrap: wrap; padding-top:6px; padding-bottom:6px;
}

.util-contact{ display:flex; align-items:center; gap: 20px; flex-wrap:wrap; }

.util-contact a{
  color: rgba(255,255,255,.80);
  text-decoration:none;
  display:inline-flex; align-items:center; gap:7px;
  transition: color .18s ease;
}
.util-contact a:hover{ color:#fff; }
.util-contact svg{ width:14px; height:14px; fill: var(--teal); flex:none; }

/* --- Login button (top right) --- */
.login-btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(32,190,198,.55);
  background: rgba(32,190,198,.13);
  color: #EAFDFE;
  font-size: 13px; font-weight: 600; letter-spacing:.02em;
  text-decoration:none;
  white-space:nowrap;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.login-btn:hover{
  background: var(--teal);
  border-color: var(--teal);
  color: #05252A;
  transform: translateY(-1px);
}
.login-btn svg{ width:14px; height:14px; fill: currentColor; flex:none; }

/* Manager Login sits beside the consultant button. Kept quieter so the
   consultant tool stays the more prominent of the two. */
.login-btn.manager{
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.86);
}
.login-btn.manager:hover{
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.95);
  color: var(--ink);
}
/* The utility bar spreads its children apart, which left the two login
   buttons at opposite ends. Pushing the first one right with auto margin
   brings the pair together, so they read as one control. */
.util-inner{ gap:10px; }
.util-inner > a.login-btn:first-of-type{ margin-left:auto; }

@media (max-width: 760px){
  .login-btn.manager span{ display:none; }
  .login-btn.manager{ padding:7px 10px; }
}
@media (max-width: 620px){
  /* Stacked on a phone, so the auto margin would shove them off-centre. */
  .util-inner > a.login-btn:first-of-type{ margin-left:0; }
}

/* --- Main header --- */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-stuck{ box-shadow: 0 6px 24px rgba(14,28,38,.08); }

.header-inner{
  height: var(--headerH);
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
}

.brand{ display:flex; align-items:center; gap: 12px; text-decoration:none; flex:none; }
.brand-logo{ width: 46px; height: 46px; object-fit: contain; flex:none; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; color: var(--text);
  letter-spacing: .01em;
}
.brand-tag{
  font-size: 9.8px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2); margin-top: 2px;
}

.nav{ display:flex; align-items:center; gap: 2px; margin-left:auto; }

.nav a{
  position:relative;
  color: var(--text);
  text-decoration:none;
  padding: 9px 13px;
  border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.nav a:hover{ color: var(--teal-deep); background: var(--bg-soft); }

.nav a[aria-current="page"]{ color: var(--teal-deep); font-weight: 600; }
.nav a[aria-current="page"]::after{
  content:""; position:absolute; left:13px; right:13px; bottom:2px;
  height:2px; border-radius:2px; background: var(--teal);
}

.header-cta{ display:flex; align-items:center; gap:10px; flex:none; }

/* --- Mobile menu --- */
.menu-btn{
  display:none;
  align-items:center; justify-content:center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: #fff; color: var(--text);
  cursor:pointer; padding:0;
}
.menu-btn:hover{ background: var(--bg-soft); }
.menu-btn svg{ width:22px; height:22px; fill:none; stroke: currentColor; stroke-width:2; stroke-linecap:round; }
.menu-btn .icon-close{ display:none; }
.menu-btn[aria-expanded="true"] .icon-open{ display:none; }
.menu-btn[aria-expanded="true"] .icon-close{ display:block; }

.menu-panel{
  display:none;
  background:#fff;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--headerH));
  overflow-y:auto;
}
.menu-panel .container{ padding-top: 12px; padding-bottom: 20px; }
.menu-panel a{
  display:block; padding: 13px 14px;
  border-radius: var(--r-sm);
  text-decoration:none; color: var(--text); font-weight:500;
  border: 1px solid transparent;
}
.menu-panel a:hover{ background: var(--bg-soft); }
.menu-panel a[aria-current="page"]{
  color: var(--teal-deep); font-weight:600;
  background: var(--teal-soft); border-color: var(--teal-line);
}
.menu-panel .menu-actions{
  margin-top: 14px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display:grid; gap:10px;
}
.menu-panel .menu-actions .btn{ width:100%; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600; letter-spacing:.01em;
  text-decoration:none; cursor:pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease,
              transform .18s ease, box-shadow .18s ease;
  white-space:nowrap;
}
.btn svg{ width:17px; height:17px; fill: currentColor; flex:none; }

.btn-primary{
  background: var(--teal-deep);
  color:#fff;
  box-shadow: 0 6px 18px rgba(14,143,151,.28);
}
.btn-primary:hover{
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(14,143,151,.34);
}

.btn-dark{ background: var(--ink); color:#fff; }
.btn-dark:hover{ background: var(--ink-2); transform: translateY(-2px); }

.btn-outline{
  background: #fff; color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline:hover{
  border-color: var(--teal); color: var(--teal-deep);
  background: var(--teal-soft); transform: translateY(-2px);
}

.btn-ghost-light{
  background: rgba(255,255,255,.10);
  color:#fff; border-color: rgba(255,255,255,.34);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,.20); transform: translateY(-2px); }

.btn-wa{ background:#25D366; color:#0A2E17; }
.btn-wa:hover{ background:#1FBE5B; transform: translateY(-2px); }

.btn-sm{ padding: 9px 16px; font-size: 14px; }
.btn-lg{ padding: 15px 30px; font-size: 16px; }

.btn-row{ display:flex; flex-wrap:wrap; gap: 12px; margin-top: 26px; }

/* =========================================================
   SECTIONS / LAYOUT
   ========================================================= */
.section{ padding: 84px 0; }
.section-sm{ padding: 56px 0; }
.section-soft{ background: var(--bg-soft); }
.section-dark{ background: var(--ink); color: rgba(255,255,255,.80); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4{ color:#fff; }
.section-dark strong{ color:#fff; }

.section-head{ max-width: 760px; margin-bottom: 44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color: var(--muted); font-size: 17px; margin:0; }
.section-dark .section-head p{ color: rgba(255,255,255,.72); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:""; width: 26px; height:2px; border-radius:2px; background: var(--teal);
}
.section-dark .eyebrow{ color: var(--teal); }

.lead{ font-size: 17.5px; line-height: 1.7; color: var(--muted); max-width: 68ch; }
.section-dark .lead{ color: rgba(255,255,255,.76); }

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--teal-line);
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 13px; font-weight: 600;
  margin-bottom: 14px;
}

.divider{ height:1px; background: var(--line); border:0; margin: 0; }

/* ---------- Cards ---------- */
.card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.card-hover{ transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.card-hover:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-line); }

.grid{ display:grid; gap: 22px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  overflow:hidden;
  background: linear-gradient(170deg, #F7FAFC 0%, #EDF4F7 55%, #E6F1F4 100%);
  padding: 76px 0 84px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: url("assets/cityview.jpg") center bottom / cover no-repeat;
  opacity: .12;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute; top:-160px; right:-160px;
  width: 480px; height: 480px; border-radius:50%;
  background: radial-gradient(circle, rgba(32,190,198,.18), rgba(32,190,198,0) 70%);
  pointer-events:none;
}
.hero .container{ position:relative; z-index:1; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items:center;
}

.hero h1{ margin-bottom: 18px; }
.hero h1 .accent{ color: var(--teal-deep); font-style: italic; }
.hero .lead{ font-size: 18px; }

.hero-trust{
  display:flex; flex-wrap:wrap; gap: 10px 26px;
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(14,28,38,.10);
}
.hero-trust li{
  list-style:none; margin:0;
  display:flex; align-items:center; gap:9px;
  font-size: 14.5px; font-weight: 500; color: var(--muted);
}
.hero-trust svg{ width:17px; height:17px; fill: var(--teal-deep); flex:none; }
.hero-trust ul{ padding:0; margin:0; display:contents; }

/* Page hero (inner pages) */
.page-hero{
  background: var(--ink);
  color: rgba(255,255,255,.80);
  padding: 62px 0 66px;
  position:relative; overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background: url("assets/cityview.jpg") center / cover no-repeat;
  opacity:.10;
}
.page-hero::after{
  content:"";
  position:absolute; bottom:-200px; left:-120px;
  width: 460px; height: 460px; border-radius:50%;
  background: radial-gradient(circle, rgba(32,190,198,.20), rgba(32,190,198,0) 70%);
}
.page-hero .container{ position:relative; z-index:1; }
.page-hero h1{ color:#fff; margin-bottom: 12px; }
.page-hero p{ color: rgba(255,255,255,.74); font-size: 17px; max-width: 62ch; margin:0; }
.page-hero .eyebrow{ color: var(--teal); }

.crumbs{
  display:flex; gap:8px; align-items:center;
  font-size: 13.5px; color: rgba(255,255,255,.55);
  margin-top: 20px;
}
.crumbs a{ color: rgba(255,255,255,.72); text-decoration:none; }
.crumbs a:hover{ color:#fff; }

/* ---------- Centred hero + team band ---------- */
.hero-center{ text-align:center; }
.hero-inner{ max-width: 900px; margin: 0 auto; }
.hero-center .lead{ margin-left:auto; margin-right:auto; }
.hero-center .btn-row{ justify-content:center; }
.hero-center .hero-trust{ justify-content:center; }

.hero-team{
  margin: 56px auto 0;
  max-width: 1080px;
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 0;
  overflow:hidden;
}
.hero-team img{ width:100%; height:auto; }
.hero-team figcaption{
  padding: 4px 6px 20px;
  font-size: 14.5px; color: var(--muted);
}
.hero-team figcaption a{
  color: var(--teal-deep); font-weight:600; text-decoration:none; white-space:nowrap;
}
.hero-team figcaption a:hover{ text-decoration:underline; }

/* ---------- Recruitment banner (Join Us) ---------- */
/* Hiring banner. The message used to be baked into a single flat image, which
   meant it could not be read by search engines or screen readers and went fuzzy
   on a large screen. It is now real text on a dark gradient panel. The team
   photo was removed at CK's request — the site already carries several group
   shots elsewhere. */
.recruit-banner{
  margin: 0;
  border-radius: var(--r-xl);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.recruit-copy{
  padding: 46px 46px 40px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(32,190,198,.22) 0%, transparent 60%),
    linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 60%, var(--ink-3) 100%);
  color:#fff;
}
.recruit-tag{
  display:inline-flex; align-items:center; gap:9px;
  margin:0 0 18px; padding: 7px 16px;
  border:1px solid rgba(32,190,198,.45); border-radius:999px;
  background: rgba(32,190,198,.12);
  color: var(--teal); font-size:12.5px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
}
.recruit-tag span{ width:7px; height:7px; border-radius:50%; background:var(--teal); flex:none; }
.recruit-copy h2{
  margin:0 0 14px; color:#fff;
  font-size: clamp(30px, 4.2vw, 50px); line-height:1.08; letter-spacing:-.02em;
}
.recruit-copy h2 em{ font-style:normal; color: var(--teal); }
.recruit-lede{
  margin:0 0 26px; max-width: 46ch;
  color: rgba(255,255,255,.76); font-size: clamp(15px, 1.5vw, 17.5px); line-height:1.6;
}
.recruit-points{
  list-style:none; margin:0 0 30px; padding:0;
  display:grid; gap:14px 26px;
  grid-template-columns: repeat(3, minmax(0,1fr));   /* across, not stacked, so
      the panel uses its full width instead of leaving half of it empty */
}
.recruit-points li{
  display:flex; align-items:center; gap:13px;
  color:#fff; font-size: 15.5px; font-weight:560;
}
.recruit-points svg{
  width:34px; height:34px; padding:8px; flex:none;
  border-radius:10px; background: rgba(32,190,198,.16);
  fill: var(--teal);
}
.recruit-foot{
  display:flex; align-items:center; gap:14px;
  padding-top: 24px; border-top:1px solid rgba(255,255,255,.14);
}
.recruit-foot > img{ width:42px; height:42px; border-radius:10px; background:#fff; padding:5px; flex:none; }
.recruit-foot strong{ display:block; color:#fff; font-size:15px; font-weight:650; }
.recruit-foot a{ color: var(--teal); font-size:14.5px; text-decoration:none; font-weight:560; }
.recruit-foot a:hover{ text-decoration:underline; }

@media (max-width: 900px){
  .recruit-points{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .recruit-copy{ padding: 34px 26px 30px; }
  .recruit-points li{ font-size:14.5px; }
}

/* =========================================================
   SLIDER
   ========================================================= */
.slider{
  border-radius: var(--r-xl);
  overflow:hidden;
  background:#fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.slider-viewport{ overflow:hidden; }
.slides{ display:flex; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.slide{ min-width:100%; }
.slide img{
  width:100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;   /* these slides contain text — never crop them */
  background:#fff;
}

.slider-controls{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px; padding: 12px 16px;
  border-top: 1px solid var(--line);
  background:#fff;
}
.navbtns{ display:flex; gap:8px; }
.navbtn{
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--line-strong); background:#fff;
  color: var(--muted); cursor:pointer;
  display:grid; place-items:center; padding:0;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.navbtn:hover{ border-color: var(--teal); color: var(--teal-deep); background: var(--teal-soft); }
.navbtn svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }

.dots{ display:flex; gap:8px; align-items:center; }
.dot{
  width: 8px; height: 8px; border-radius:999px; padding:0;
  border: 0; background: var(--line-strong); cursor:pointer;
  transition: width .25s ease, background .25s ease;
}
.dot.is-active{ width: 26px; background: var(--teal-deep); }

/* ---------- Testimonial photo slideshow ---------- */
.tslider{ max-width: 900px; margin: 0 auto; }
.tslider .slide img{
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--bg-soft);
}
.tslide-caption{
  margin: 0; padding: 14px 20px;
  font-size: 14.5px; color: var(--muted); text-align:center;
  border-top: 1px solid var(--line);
}
.tslider-wrap .empty-state{ max-width: 720px; margin-left:auto; margin-right:auto; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-lg); overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.stat{ background: var(--ink); padding: 30px 24px; text-align:center; }
.stat-num{
  font-family: var(--font-head);
  font-size: clamp(30px, 3.6vw, 42px); font-weight: 700;
  color: var(--teal); line-height:1.1;
}
.stat-label{
  margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.72);
  letter-spacing:.01em;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.svc-card{
  display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--line);
  border-radius: var(--r-lg); overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-line); }

.svc-media{ position:relative; aspect-ratio: 16/9; overflow:hidden; background: var(--bg-soft); }
.svc-media img{ width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-media img{ transform: scale(1.05); }

.svc-body{ padding: 26px; display:flex; flex-direction:column; flex:1; }
.svc-icon{
  width: 52px; height: 52px; border-radius: 14px;
  display:grid; place-items:center;
  background: var(--teal-soft);
  border: 1px solid var(--teal-line);
  margin-bottom: 16px;
}
.svc-icon svg{ width: 26px; height: 26px; fill: var(--teal-deep); }
.svc-body h3{ margin-bottom: 6px; }
.svc-sub{ color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.svc-list{ padding-left: 0; list-style:none; margin: 0 0 20px; }
.svc-list li{
  position:relative; padding-left: 24px; margin: 10px 0;
  font-size: 14.5px; color: var(--muted);
}
.svc-list li::before{
  content:""; position:absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius:999px;
  background: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft);
}
.svc-list li strong{ color: var(--text); }
.svc-body .btn{ margin-top:auto; align-self:flex-start; }

/* =========================================================
   FEATURE / WHY-US
   ========================================================= */
.feature{ display:flex; gap: 16px; }
.feature-icon{
  width: 44px; height: 44px; border-radius: 12px; flex:none;
  display:grid; place-items:center;
  background: var(--teal-soft); border:1px solid var(--teal-line);
}
.feature-icon svg{ width:21px; height:21px; fill: var(--teal-deep); }
.feature h3{ margin-bottom: 5px; font-size: 17px; }
.feature p{ color: var(--muted); font-size: 14.8px; margin:0; }

.section-dark .feature-icon{ background: rgba(32,190,198,.14); border-color: rgba(32,190,198,.32); }
.section-dark .feature-icon svg{ fill: var(--teal); }
.section-dark .feature p{ color: rgba(255,255,255,.70); }

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.steps{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position:relative; }
.step{
  background:#fff; border:1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  position:relative;
  box-shadow: var(--shadow-sm);
}
.step-num{
  width: 42px; height: 42px; border-radius: 999px;
  display:grid; place-items:center;
  background: var(--ink); color: var(--teal);
  font-family: var(--font-head); font-size: 19px; font-weight:700;
  margin-bottom: 16px;
}
.step h3{ font-size: 17px; margin-bottom: 6px; }
.step p{ color: var(--muted); font-size: 14.6px; margin:0; }

/* =========================================================
   TEAM
   ========================================================= */
.team-banner{
  border-radius: var(--r-xl);
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}
.team-banner img{ width:100%; height:auto; border-radius: var(--r-lg); }

.team-grid{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap: 20px;
}
.team-grid .member{ flex: 0 1 calc(20% - 16px); min-width: 170px; }

.member{
  text-align:center;
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 14px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.member:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-line); }

.member-photo{
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  overflow:hidden;
  background: linear-gradient(160deg, var(--bg-soft-2), #E2ECF0);
  margin-bottom: 14px;
}
.member-photo img{ width:100%; height:100%; object-fit: cover; object-position: center top; }

.member-name{ font-weight: 650; color: var(--text); font-size: 15.5px; line-height:1.3; }
.member-role{ margin-top: 5px; font-size: 13.2px; color: var(--muted); line-height:1.4; }

.team-subhead{
  display:flex; align-items:center; gap: 14px;
  margin: 46px 0 22px;
}
.team-subhead h3{ margin:0; font-size: 15px; letter-spacing:.10em; text-transform:uppercase; color: var(--muted); font-weight:700; }
.team-subhead::after{ content:""; flex:1; height:1px; background: var(--line); }

/* =========================================================
   VMV
   ========================================================= */
.vmv{
  border-radius: var(--r-xl);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
  padding: 30px 0;          /* white space above and below the artwork */
}
.vmv img{ width:100%; height:auto; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quote{
  background:#fff; border:1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column;
  position:relative;
}
.quote::before{
  content:"\201C";
  font-family: var(--font-head);
  font-size: 78px; line-height: 1; color: var(--teal);
  opacity:.22;
  position:absolute; top: 14px; right: 24px;
}
.quote-stars{ display:flex; gap:3px; margin-bottom: 16px; }
.quote-stars svg{ width:17px; height:17px; fill: #F5A623; }
.quote-text{
  font-size: 16px; line-height:1.72; color: var(--text);
  margin:0 0 20px; position:relative; z-index:1;
}
.quote-foot{
  margin-top:auto; padding-top: 18px;
  border-top: 1px solid var(--line);
  display:flex; flex-direction:column; align-items:flex-start; gap: 12px;
}
.quote-who{ font-size: 14px; font-weight:600; color: var(--text); }
.quote-who span{ display:block; font-weight:400; color: var(--muted); font-size: 13.2px; }
.tag{
  display:inline-flex; padding: 6px 12px; border-radius:999px;
  border:1px solid var(--teal-line); background: var(--teal-soft);
  color: var(--teal-deep); font-size: 12.5px; font-weight:600;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq details{
  background:#fff; border:1px solid var(--line);
  border-radius: var(--r); padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease;
}
.faq details[open]{ border-color: var(--teal-line); }
.faq summary{
  cursor:pointer; font-weight:600; color: var(--text);
  list-style:none; display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
  font-size: 15.5px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+"; flex:none;
  font-size: 22px; line-height:1; color: var(--teal-deep); font-weight:400;
  transition: transform .2s ease;
}
.faq details[open] summary::after{ content:"\2212"; }
.faq details p{ margin: 12px 0 0; color: var(--muted); font-size: 14.8px; }

/* =========================================================
   GALLERY
   ========================================================= */
.filterbar{
  display:flex; flex-wrap:wrap; gap: 10px; align-items:center;
  margin-bottom: 28px;
}
.filter-btn{
  padding: 9px 18px; border-radius:999px;
  border: 1px solid var(--line-strong); background:#fff;
  cursor:pointer; font: inherit; font-size: 14px; font-weight: 500;
  color: var(--muted);
  transition: all .18s ease;
}
.filter-btn:hover{ border-color: var(--teal); color: var(--teal-deep); }
.filter-btn[aria-pressed="true"]{
  border-color: var(--teal-deep); background: var(--teal-deep); color:#fff; font-weight:600;
}

.album-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.album-card{
  display:block; text-decoration:none; color:inherit;
  border-radius: var(--r-lg); overflow:hidden;
  border: 1px solid var(--line); background:#fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.album-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-line); }

.album-cover{ position:relative; aspect-ratio: 4/3; overflow:hidden; background: var(--bg-soft); }
.album-cover img{ width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.album-card:hover .album-cover img{ transform: scale(1.06); }

.badge{
  position:absolute; top: 12px;
  display:inline-flex; align-items:center; gap:6px;
  padding: 6px 12px; border-radius:999px;
  background: rgba(14,28,38,.62);
  backdrop-filter: blur(8px);
  color:#fff; font-size: 12.5px; font-weight:600;
  border: 1px solid rgba(255,255,255,.20);
}
.badge.count{ left: 12px; }
.badge.year{ right: 12px; }

.album-body{ padding: 20px 22px 24px; }
.album-title{ font-size: 17px; font-weight: 650; color: var(--text); margin: 0 0 5px; font-family: var(--font-body); }
.album-desc{ margin:0; color: var(--muted); font-size: 14px; }

/* Photo grid */
.photo-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.photo{
  position:relative; aspect-ratio: 4/3; overflow:hidden;
  border-radius: var(--r); cursor:pointer;
  background: var(--bg-soft); border:1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.photo:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.photo img{ width:100%; height:100%; object-fit: cover; transition: transform .45s ease; }
.photo:hover img{ transform: scale(1.06); }
.photo .py{
  position:absolute; bottom: 10px; right: 10px;
  padding: 4px 10px; border-radius:999px;
  background: rgba(14,28,38,.62); backdrop-filter: blur(6px);
  color:#fff; font-size: 11.5px; font-weight:600;
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index: 3000;
  display:none; place-items:center;
  background: rgba(8,16,22,.94);
  padding: 24px;
}
.lightbox.is-open{ display:grid; }
.lightbox img{ max-width: min(1200px, 94vw); max-height: 82vh; border-radius: var(--r); object-fit: contain; }
.lb-bar{
  position:absolute; bottom: 24px; left:50%; transform: translateX(-50%);
  display:flex; align-items:center; gap: 16px;
  color: rgba(255,255,255,.85); font-size: 14px;
}
.lb-btn{
  width: 46px; height: 46px; border-radius:999px;
  border:1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.10);
  color:#fff; cursor:pointer; display:grid; place-items:center; padding:0;
  transition: background .18s ease;
}
.lb-btn:hover{ background: rgba(255,255,255,.22); }
.lb-btn svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.lb-close{ position:absolute; top: 22px; right: 22px; }
.lb-prev{ position:absolute; top:50%; left: 22px; transform: translateY(-50%); }
.lb-next{ position:absolute; top:50%; right: 22px; transform: translateY(-50%); }

.empty-state{
  padding: 42px 28px; text-align:center;
  border: 1px dashed var(--line-strong); border-radius: var(--r-lg);
  background: var(--bg-soft); color: var(--muted);
}

/* =========================================================
   FORMS
   ========================================================= */
.form label{
  display:block; margin-top: 18px; margin-bottom: 7px;
  color: var(--text); font-size: 14px; font-weight: 600;
}
.form label:first-of-type{ margin-top: 0; }
.form .req{ color: #C0392B; }

.form input, .form select, .form textarea{
  width:100%; padding: 13px 15px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  font: inherit; font-size: 15px; color: var(--text);
  background:#fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form input::placeholder, .form textarea::placeholder{ color: var(--muted-2); }
.form input:focus, .form select:focus, .form textarea:focus{
  outline:none; border-color: var(--teal); box-shadow: var(--focus);
}
.form textarea{ min-height: 128px; resize: vertical; }

.form-consent{
  display:flex; gap: 11px; align-items:flex-start;
  margin-top: 20px; font-size: 13.4px; color: var(--muted); line-height:1.6;
}
.form-consent input{ width: 17px; height: 17px; margin-top: 3px; flex:none; accent-color: var(--teal-deep); }

.form-actions{ display:flex; flex-wrap:wrap; gap: 12px; margin-top: 24px; }
.form-note{ margin-top: 16px; font-size: 13.4px; color: var(--muted); }

/* Contact info list */
.info-list{ list-style:none; padding:0; margin: 0; }
.info-list li{
  display:flex; gap: 15px; align-items:flex-start;
  padding: 17px 0; margin:0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child{ border-bottom:0; padding-bottom:0; }
.info-list li:first-child{ padding-top:0; }
.info-icon{
  width: 40px; height: 40px; border-radius: 11px; flex:none;
  display:grid; place-items:center;
  background: var(--teal-soft); border: 1px solid var(--teal-line);
}
.info-icon svg{ width:18px; height:18px; fill: var(--teal-deep); }
.info-label{ font-size: 12px; font-weight:700; letter-spacing:.10em; text-transform:uppercase; color: var(--muted-2); margin-bottom: 3px; }
.info-value{ color: var(--text); font-size: 15px; line-height:1.55; }
.info-value a{ color: var(--text); text-decoration:none; }
.info-value a:hover{ color: var(--teal-deep); }

.map-wrapper{
  border-radius: var(--r-lg); overflow:hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background:#fff;
}
.map-wrapper iframe{ width:100%; height: 420px; border:0; display:block; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  color:#fff;
  position:relative; overflow:hidden;
  text-align:center;
}
.cta-band::before{
  content:"";
  position:absolute; top:-140px; right:-100px;
  width: 420px; height: 420px; border-radius:50%;
  background: radial-gradient(circle, rgba(32,190,198,.30), rgba(32,190,198,0) 70%);
}
.cta-band > *{ position:relative; z-index:1; }
.cta-band h2{ color:#fff; margin-bottom: 12px; }
.cta-band p{ color: rgba(255,255,255,.76); font-size: 17px; max-width: 58ch; margin: 0 auto; }
.cta-band .btn-row{ justify-content:center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.66);
  font-size: 14.5px;
  margin-top: 0;
}
.footer-main{ padding: 62px 0 44px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
}
.footer-brand{ display:flex; align-items:center; gap: 12px; margin-bottom: 18px; }
.footer-brand img{ width: 44px; height:44px; object-fit:contain; background:#fff; border-radius: 10px; padding: 4px; }
.footer-brand .brand-name{ color:#fff; font-size: 18px; }
.footer-brand .brand-tag{ color: rgba(255,255,255,.50); }
.footer-about{ color: rgba(255,255,255,.62); line-height:1.7; margin-bottom: 20px; max-width: 40ch; }

.footer-col h4{
  color:#fff; font-size: 13px; font-weight: 700;
  letter-spacing:.12em; text-transform:uppercase;
  margin-bottom: 18px;
}
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin: 0 0 11px; }
.footer-links a{
  color: rgba(255,255,255,.66); text-decoration:none;
  transition: color .18s ease;
}
.footer-links a:hover{ color: var(--teal); }

.footer-contact{ list-style:none; padding:0; margin:0; }
.footer-contact li{ display:flex; gap:11px; margin: 0 0 14px; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; fill: var(--teal); flex:none; margin-top: 4px; }
.footer-contact a{ color: rgba(255,255,255,.66); text-decoration:none; }
.footer-contact a:hover{ color: var(--teal); }

.footer-disclaimer{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 26px 0;
  font-size: 12.8px; line-height:1.7;
  color: rgba(255,255,255,.46);
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 20px 0 26px;
  display:flex; justify-content:space-between; align-items:center; gap: 16px; flex-wrap:wrap;
  font-size: 13.4px; color: rgba(255,255,255,.50);
}
.footer-bottom a{ color: rgba(255,255,255,.62); text-decoration:none; }
.footer-bottom a:hover{ color: var(--teal); }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float{
  position: fixed; right: 20px; bottom: 20px; z-index: 1200;
  width: 56px; height: 56px; border-radius: 999px;
  display:grid; place-items:center;
  background: #25D366;
  box-shadow: 0 8px 28px rgba(37,211,102,.42);
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover{ transform: scale(1.07); box-shadow: 0 12px 34px rgba(37,211,102,.52); }
.wa-float svg{ width: 30px; height: 30px; fill:#fff; }
.wa-float::after{
  content:""; position:absolute; inset:0; border-radius:999px;
  border: 2px solid rgba(37,211,102,.55);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse{
  0%{ transform: scale(1); opacity:.8; }
  70%{ transform: scale(1.45); opacity:0; }
  100%{ transform: scale(1.45); opacity:0; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal{ opacity:0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .team-grid .member{ flex-basis: calc(25% - 15px); }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px; }
  .photo-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px){
  .nav{ display:none; }
  .header-cta .btn{ display:none; }
  .menu-btn{ display:inline-flex; }
  .menu-panel.is-open{ display:block; }

  .hero{ padding: 52px 0 60px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 40px; }

  .section{ padding: 62px 0; }
  .section-head{ margin-bottom: 34px; }

  .grid-3, .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .stats{ grid-template-columns: repeat(2, 1fr); }
  .album-grid{ grid-template-columns: repeat(2, 1fr); }
  .faq{ grid-template-columns: 1fr; }
  .cta-band{ padding: 42px 28px; }
  .map-wrapper iframe{ height: 320px; }
}

@media (max-width: 720px){
  .util-contact{ display:none; }
  .util-inner{ justify-content:flex-end; }
  .login-btn{ padding: 6px 13px; font-size: 12.5px; }

  .brand-logo{ width: 40px; height: 40px; }
  .brand-name{ font-size: 17px; }
  .brand-tag{ font-size: 9px; letter-spacing:.08em; }
  :root{ --headerH: 68px; }

  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .team-grid .member{ flex-basis: calc(50% - 10px); min-width:0; }
  .photo-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; }
  .btn-row .btn{ width:100%; }
  .lb-prev{ left: 10px; } .lb-next{ right: 10px; }
}

@media (max-width: 560px){
  /* the four-part tagline crowds the menu button on a phone */
  .brand-tag{ display:none; }
  .brand-name{ font-size: 18px; }
}

@media (max-width: 460px){
  .album-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .container{ padding: 0 16px; }
}

/* ---------- Print ---------- */
@media print{
  .util-bar, .site-header, .wa-float, .menu-panel, .btn{ display:none !important; }
  body{ color:#000; }
}
