/* ===========================================================
   Prestige Professional Academy — shared stylesheet
   =========================================================== */

:root{
  /* Core professional palette */
  --navy-900:#0B1F3A;
  --navy-800:#122A4D;
  --navy-700:#1B3A63;
  --navy-600:#25507F;
  --navy-500:#33689F;
  --slate-600:#4A5568;
  --slate-400:#8592A6;
  --ink:#1A202C;
  --ink-soft:#59636F;
  --paper:#F7F8FA;
  --paper-deep:#EDF0F4;
  --line:#DDE3EA;
  --white:#FFFFFF;

  /* Accent (muted, professional gold) */
  --gold-700:#8A6A26;
  --gold-600:#9C7A2E;
  --gold-500:#B9924A;
  --gold-300:#D9BD82;
  --gold-100:#F1E4C8;

  --shadow-navy: 0 20px 50px -22px rgba(11,31,58,0.45);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'IBM Plex Sans', sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}

h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:700;
  color:var(--navy-900);
  letter-spacing:-0.01em;
}

.eyebrow{
  font-family:'IBM Plex Sans', sans-serif;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold-600);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:24px; height:2px;
  background:var(--gold-500);
  display:inline-block;
}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}

/* ---------- NAV ---------- */
header.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(247,248,250,0.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1180px;
  margin:0 auto;
  padding:14px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{width:46px; height:46px;}
.brand-text{
  font-family:'Fraunces', serif;
  line-height:1.05;
}
.brand-text .name{
  font-size:1.05rem;
  font-weight:700;
  color:var(--navy-900);
  display:block;
}
.brand-text .sub{
  font-size:0.62rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--gold-600);
  font-family:'IBM Plex Sans', sans-serif;
  font-weight:600;
}
nav.links{
  display:flex;
  gap:36px;
}
nav.links a{
  font-size:0.92rem;
  font-weight:500;
  color:var(--ink-soft);
  position:relative;
  padding:4px 0;
  transition:color .2s ease;
}
nav.links a:hover, nav.links a.active{color:var(--navy-800);}
nav.links a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background:var(--gold-500);
  transition:width .25s ease;
}
nav.links a:hover::after, nav.links a.active::after{width:100%;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:3px;
  font-weight:600;
  font-size:0.92rem;
  cursor:pointer;
  border:1.5px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary{
  background:var(--navy-800);
  color:var(--white);
  box-shadow:var(--shadow-navy);
}
.btn-primary:hover{background:var(--navy-900); transform:translateY(-2px);}
.btn-ghost{
  background:transparent;
  color:var(--navy-900);
  border-color:var(--navy-900);
}
.btn-ghost:hover{background:var(--navy-900); color:var(--white);}
.btn-gold{
  background:var(--gold-500);
  color:var(--navy-900);
}
.btn-gold:hover{background:var(--gold-300); transform:translateY(-2px);}

.nav-cta{display:flex; align-items:center; gap:20px;}
.nav-cta .btn{padding:11px 22px;}

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero{
  position:relative;
  padding:64px 0 56px;
  overflow:hidden;
  background:var(--navy-900);
  color:var(--white);
}
.page-hero::before{
  content:"";
  position:absolute;
  top:-220px; right:-160px;
  width:520px; height:520px;
  border-radius:50%;
  border:1px solid rgba(217,189,130,0.28);
}
.page-hero::after{
  content:"";
  position:absolute;
  bottom:-260px; left:-160px;
  width:460px; height:460px;
  border-radius:50%;
  border:1px solid rgba(217,189,130,0.16);
}
.page-hero .wrap{position:relative; z-index:2;}
.page-hero .eyebrow{color:var(--gold-300);}
.page-hero .eyebrow::before{background:var(--gold-300);}
.page-hero h1{
  color:var(--white);
  font-size:2.6rem;
  margin:16px 0 14px;
  line-height:1.15;
}
.page-hero p{
  color:#C9D3E0;
  max-width:620px;
  font-size:1.02rem;
}
.crumb{
  font-size:0.82rem;
  color:#8FA0BC;
  margin-bottom:6px;
}
.crumb a{color:var(--gold-300);}
.crumb a:hover{text-decoration:underline;}

.page-hero.with-icon .wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}
.page-hero{padding:72px 0 0; overflow:visible;}
.page-hero .hero-copy-inner{padding-bottom:64px;}
.hero-illustration{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  height:340px;
}
.hero-illustration .plate{
  position:absolute;
  bottom:0; left:50%;
  transform:translateX(-50%);
  width:320px; height:320px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(217,189,130,0.16), transparent 68%);
  border:1px solid rgba(217,189,130,0.3);
}
.hero-illustration svg{
  position:relative;
  z-index:2;
  width:280px; height:280px;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,0.35));
}
@media (max-width:820px){
  .page-hero.with-icon .wrap{grid-template-columns:1fr; text-align:center;}
  .hero-illustration{height:260px; margin-top:10px;}
  .hero-illustration svg{width:220px; height:220px;}
}

.hero-wave{
  display:block;
  width:100%;
  height:64px;
  margin-top:40px;
}
.hero-wave path{fill:var(--paper);}
.hero-wave.alt path{fill:var(--paper-deep);}

/* Official logo plates & badges */
.logo-plate{
  background:#fff;
  border-radius:10px;
  padding:10px 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 30px -14px rgba(0,0,0,0.35);
}
.logo-plate img{display:block; height:46px; width:auto; max-width:180px; object-fit:contain;}

.body-logo-strip{
  display:flex;
  justify-content:flex-start;
  margin-bottom:22px;
}
@media (max-width:820px){
  .body-logo-strip{justify-content:center;}
}

.official-badge{
  width:128px; height:128px;
  margin:0 auto 18px;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.card-logo{
  height:52px;
  width:auto;
  max-width:190px;
  object-fit:contain;
  margin-bottom:14px;
}
.card-logo.pmi-logo{height:52px;}

.banner-photo{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 30px 60px -30px rgba(11,31,58,0.4);
  line-height:0;
}
.banner-photo img{width:100%; display:block;}
.texture-dots{
  position:relative;
}
.texture-dots::before{
  content:"";
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(27,58,99,0.08) 1px, transparent 1px);
  background-size:22px 22px;
  -webkit-mask-image:linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
  mask-image:linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
  pointer-events:none;
}
.texture-dots > .wrap{position:relative; z-index:1;}

/* ---------- HOME HERO ---------- */
.hero{
  position:relative;
  padding:96px 0 80px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:-260px; right:-260px;
  width:760px; height:760px;
  border-radius:50%;
  border:1px solid var(--gold-300);
  opacity:0.5;
}
.hero::after{
  content:"";
  position:absolute;
  top:-180px; right:-180px;
  width:600px; height:600px;
  border-radius:50%;
  border:1px solid var(--gold-300);
  opacity:0.5;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero h1{
  font-size:3.2rem;
  line-height:1.08;
  margin:20px 0 22px;
}
.hero h1 em{
  font-style:normal;
  color:var(--navy-700);
  background:linear-gradient(180deg, transparent 62%, var(--gold-100) 62%);
}
.hero p.lead{
  font-size:1.08rem;
  color:var(--ink-soft);
  max-width:520px;
  margin-bottom:34px;
}
.hero-ctas{
  display:flex;
  gap:16px;
  margin-bottom:38px;
}
.trust-row{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:0.85rem;
  color:var(--ink-soft);
}
.trust-row .stars{color:var(--gold-500); letter-spacing:2px;}

.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  height:520px;
}
.ring{
  position:absolute;
  border-radius:50%;
  border:1px dashed var(--gold-300);
}
.ring.r1{width:520px; height:520px;}
.ring.r2{width:420px; height:420px; border-style:solid; border-color:var(--navy-500); opacity:0.18;}
.ring.r3{width:320px; height:320px; border-style:dashed;}
.hero-visual .disc{
  position:relative;
  width:400px; height:400px;
  border-radius:50%;
  background:radial-gradient(circle at 32% 28%, #ffffff 0%, var(--paper-deep) 55%, #E7ECF2 100%);
  box-shadow:0 40px 80px -30px rgba(11,31,58,0.35), inset 0 0 0 1px var(--gold-300);
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual .disc img{
  width:78%;
  filter:drop-shadow(0 12px 24px rgba(0,0,0,0.15));
}
.badge-float{
  position:absolute;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:10px;
  padding:12px 16px;
  box-shadow:0 18px 40px -18px rgba(11,31,58,0.35);
  font-size:0.8rem;
  font-weight:600;
  color:var(--navy-900);
  display:flex;
  align-items:center;
  gap:9px;
}
.badge-float span.dot{width:9px; height:9px; border-radius:50%; background:#2F7D4F; display:inline-block;}
.badge-float.b1{top:18px; left:-6px;}
.badge-float.b2{bottom:34px; right:-14px;}
.badge-float.b2 span.dot{background:var(--gold-500);}

/* ---------- SECTION HEADS ---------- */
.section{padding:96px 0;}
.section-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.section-head h2{
  font-size:2.2rem;
  margin-top:16px;
  line-height:1.15;
}
.section-head p{
  color:var(--ink-soft);
  margin-top:16px;
  font-size:1.02rem;
}
.section-head.left{margin:0 0 48px; text-align:left;}
.section.tight{padding:64px 0;}
.section.alt{background:var(--paper-deep);}

/* ---------- BODY / CATEGORY CARDS (home + hub) ---------- */
.body-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.body-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  padding:30px 26px;
  transition:box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  border-top:3px solid var(--accent, var(--navy-700));
  box-shadow:0 2px 8px -4px rgba(11,31,58,0.08);
}
.body-card:hover{
  box-shadow:0 30px 60px -28px rgba(11,31,58,0.32);
  transform:translateY(-5px);
}
.body-card .tag{
  display:inline-block;
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--accent, var(--navy-700));
  margin-bottom:12px;
}
.body-card h3{font-size:1.2rem; margin-bottom:10px;}
.body-card p{font-size:0.92rem; color:var(--ink-soft); margin-bottom:16px;}
.body-card .go{
  font-size:0.86rem;
  font-weight:600;
  color:var(--accent, var(--navy-700));
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.body-card .go svg{transition:transform .2s ease;}
.body-card:hover .go svg{transform:translateX(3px);}

/* ---------- CERTIFICATIONS (seal cards) ---------- */
.cert-section{background:var(--navy-900); color:var(--white); position:relative;}
.cert-section .section-head h2{color:var(--white);}
.cert-section .section-head p{color:#C9D3E0;}
.cert-section .eyebrow{color:var(--gold-300);}
.cert-section .eyebrow::before{background:var(--gold-300);}

.cert-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
}
.cert-grid.cols-2{grid-template-columns:repeat(2,1fr); max-width:760px; margin:0 auto;}
.cert-grid.cols-3{grid-template-columns:repeat(3,1fr);}
.cert-grid.cols-5{grid-template-columns:repeat(5,1fr);}
.seal{
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border:1px solid rgba(217,189,130,0.25);
  border-radius:12px;
  padding:34px 22px 28px;
  text-align:center;
  transition:transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.seal:hover{transform:translateY(-7px); border-color:var(--gold-300); background:rgba(255,255,255,0.08); box-shadow:0 24px 40px -20px rgba(0,0,0,0.45);}
.shield{
  width:76px; height:88px;
  margin:0 auto 18px;
  position:relative;
  clip-path:polygon(50% 0%, 100% 18%, 100% 62%, 50% 100%, 0% 62%, 0% 18%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Fraunces', serif;
  font-weight:800;
  font-size:1.3rem;
  color:var(--navy-900);
  border:1px solid rgba(0,0,0,0.08);
}
.shield.gold{background:linear-gradient(160deg, var(--gold-300), var(--gold-600)); color:#3A2C0E;}
.shield.teal{background:linear-gradient(160deg, #4FB3A9, #12766A); color:#062E26;}
.shield.rose{background:linear-gradient(160deg, #C97FA0, #8A2F55); color:#38101F;}
.shield.blue{background:linear-gradient(160deg, #6E96D8, #2A5C8A); color:#0E2038;}
.shield.green{background:linear-gradient(160deg, #6FBE8C, #2F7D4F); color:#0E2E1B;}
.shield.orange{background:linear-gradient(160deg, #E6A16B, #C1622B); color:#3A1B08;}
.shield.white{background:linear-gradient(160deg, #FFFFFF, #E6E9ED); color:#1A202C; border:1px solid #C9D1DA;}
.shield.yellow{background:linear-gradient(160deg, #F3D874, #D9B02E); color:#3A2C0E;}
.shield.black{background:linear-gradient(160deg, #3B3F45, #101215); color:#E8D9A8;}
.shield.mbb{background:linear-gradient(160deg, #101215, #000000); color:var(--gold-300); border:1px solid var(--gold-500);}

.seal h3{
  color:var(--white);
  font-size:1.1rem;
  margin-bottom:4px;
}
.seal .full-name{
  font-size:0.72rem;
  color:var(--gold-300);
  font-weight:600;
  letter-spacing:0.02em;
  margin-bottom:12px;
  display:block;
}
.seal p{
  font-size:0.86rem;
  color:#C3CDDB;
}

/* ---------- SERVICES ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:8px;
  padding:32px 28px;
  transition:box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.service-card:hover{
  box-shadow:0 24px 50px -24px rgba(11,31,58,0.28);
  transform:translateY(-4px);
  border-color:var(--gold-300);
}
.service-icon{
  width:52px; height:52px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.service-card h3{
  font-size:1.12rem;
  margin-bottom:10px;
}
.service-card p{
  color:var(--ink-soft);
  font-size:0.92rem;
}
.ic-navy{background:#E1E7F0;}
.ic-gold{background:#F1E4C8;}
.ic-teal{background:#DCF1EA;}
.ic-blue{background:#DCE6F5;}
.ic-rose{background:#F3E1E9;}
.ic-green{background:#E1F0E5;}

/* ---------- PROMISE BANNER ---------- */
.promise{
  position:relative;
  background:linear-gradient(120deg, var(--navy-700), var(--navy-900) 70%);
  border-radius:14px;
  padding:64px 60px;
  color:var(--white);
  overflow:hidden;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:44px;
  align-items:center;
}
.promise::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 90% 15%, rgba(185,146,74,0.28), transparent 45%),
    radial-gradient(circle at 8% 90%, rgba(185,146,74,0.18), transparent 40%);
}
.promise-icon{
  position:relative; z-index:2;
  width:96px; height:96px;
  border-radius:50%;
  border:2px solid var(--gold-300);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.promise-icon svg{width:42px; height:42px;}
.promise-text{position:relative; z-index:2;}
.promise .eyebrow{color:var(--gold-300);}
.promise .eyebrow::before{background:var(--gold-300);}
.promise h2{
  color:var(--white);
  font-size:1.85rem;
  margin:14px 0 14px;
  line-height:1.2;
}
.promise p{
  color:#D6DEE9;
  font-size:1.02rem;
  max-width:640px;
}
.promise-points{
  display:flex;
  gap:28px;
  margin-top:22px;
  flex-wrap:wrap;
}
.promise-points span{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.88rem;
  font-weight:600;
  color:var(--gold-300);
}

/* ---------- PROCESS ---------- */
.process{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  position:relative;
}
.process::before{
  content:"";
  position:absolute;
  top:26px; left:12%; right:12%;
  height:1px;
  background:repeating-linear-gradient(90deg, var(--gold-300) 0 8px, transparent 8px 16px);
  z-index:0;
}
.step{
  position:relative;
  z-index:1;
  padding:0 20px;
  text-align:left;
}
.step-num{
  width:52px; height:52px;
  border-radius:50%;
  background:var(--paper);
  border:2px solid var(--navy-700);
  color:var(--navy-700);
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:1.2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.step h3{font-size:1.05rem; margin-bottom:8px;}
.step p{font-size:0.88rem; color:var(--ink-soft);}

/* ---------- CONTACT ---------- */
.contact-section{background:var(--paper-deep);}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}
.contact-info h2{font-size:2.1rem; margin-bottom:16px;}
.contact-info p{color:var(--ink-soft); margin-bottom:30px; max-width:440px;}
.info-row{
  display:flex;
  gap:16px;
  margin-bottom:22px;
  align-items:flex-start;
}
.info-row .ico{
  width:40px; height:40px;
  border-radius:50%;
  background:var(--navy-800);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.info-row .txt strong{display:block; font-size:0.92rem; color:var(--navy-900);}
.info-row .txt span{font-size:0.88rem; color:var(--ink-soft);}

.form-card{
  background:var(--white);
  border-radius:12px;
  padding:36px;
  box-shadow:0 30px 60px -30px rgba(11,31,58,0.3);
  border:1px solid var(--line);
}
.form-card h3{font-size:1.2rem; margin-bottom:6px;}
.form-card .sub{color:var(--ink-soft); font-size:0.88rem; margin-bottom:24px;}
.field{margin-bottom:16px;}
.field label{
  display:block;
  font-size:0.78rem;
  font-weight:600;
  color:var(--ink-soft);
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:0.04em;
}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 14px;
  border:1.5px solid var(--line);
  border-radius:6px;
  font-family:'IBM Plex Sans', sans-serif;
  font-size:0.92rem;
  background:var(--paper);
  color:var(--ink);
  transition:border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--navy-700);
}
.form-card .btn{width:100%;}

/* ---------- ABOUT / VALUES ---------- */
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.value-card{
  padding:28px 24px;
  border-radius:10px;
  background:var(--white);
  border:1px solid var(--line);
}
.value-card .num{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:1.6rem;
  color:var(--gold-600);
  margin-bottom:10px;
  display:block;
}
.value-card h3{font-size:1.08rem; margin-bottom:8px;}
.value-card p{font-size:0.9rem; color:var(--ink-soft);}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.two-col p{color:var(--ink-soft); margin-bottom:16px;}
.stat-row{
  display:flex;
  gap:36px;
  margin-top:28px;
  flex-wrap:wrap;
}
.stat-row .stat strong{
  display:block;
  font-family:'Fraunces', serif;
  font-size:2rem;
  color:var(--navy-900);
}
.stat-row .stat span{font-size:0.82rem; color:var(--ink-soft);}
.portrait-frame{
  border-radius:12px;
  background:linear-gradient(160deg, var(--navy-800), var(--navy-900));
  aspect-ratio:4/3.4;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.portrait-frame img{width:52%; opacity:0.94;}
.portrait-frame::after{
  content:"";
  position:absolute; inset:10px;
  border:1px solid rgba(217,189,130,0.35);
  border-radius:8px;
}

/* ---------- FOOTER ---------- */
footer{
  background:var(--navy-900);
  color:#C9D3E0;
  padding:56px 0 26px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(217,189,130,0.2);
}
.footer-brand .brand-text .name{color:var(--white);}
.footer-brand p{
  font-size:0.86rem;
  color:#A9B7CB;
  margin-top:14px;
  max-width:280px;
}
footer h4{
  color:var(--gold-300);
  font-size:0.82rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:16px;
  font-family:'IBM Plex Sans', sans-serif;
}
footer ul li{margin-bottom:10px;}
footer ul li a{
  font-size:0.88rem;
  color:#C2CEE0;
  transition:color .2s ease;
}
footer ul li a:hover{color:var(--gold-300);}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  font-size:0.8rem;
  color:#8496B0;
  flex-wrap:wrap;
  gap:12px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  nav.links{display:none;}
  .hero-inner{grid-template-columns:1fr; text-align:center;}
  .hero p.lead{margin-left:auto; margin-right:auto;}
  .hero-ctas{justify-content:center;}
  .trust-row{justify-content:center;}
  .hero-visual{height:400px;}
  .cert-grid{grid-template-columns:repeat(2,1fr);}
  .cert-grid.cols-5{grid-template-columns:repeat(3,1fr);}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .body-grid{grid-template-columns:repeat(2,1fr);}
  .values-grid{grid-template-columns:repeat(2,1fr);}
  .promise{grid-template-columns:1fr; text-align:center;}
  .promise-icon{margin:0 auto;}
  .promise-points{justify-content:center;}
  .process{grid-template-columns:repeat(2,1fr); gap:40px 20px;}
  .process::before{display:none;}
  .contact-grid{grid-template-columns:1fr; gap:40px;}
  .footer-top{grid-template-columns:1fr 1fr; gap:32px;}
  .two-col{grid-template-columns:1fr; gap:32px;}
}
@media (max-width: 600px){
  .wrap{padding:0 20px;}
  .hero{padding:56px 0 50px;}
  .hero h1{font-size:2.1rem;}
  .page-hero h1{font-size:1.9rem;}
  .section{padding:64px 0;}
  .cert-grid{grid-template-columns:1fr;}
  .cert-grid.cols-5{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .body-grid{grid-template-columns:1fr;}
  .values-grid{grid-template-columns:1fr;}
  .process{grid-template-columns:1fr;}
  .promise{padding:40px 26px;}
  .footer-top{grid-template-columns:1fr;}
  .hero-ctas{flex-direction:column; width:100%;}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important;}
}

/* ===========================================================
   WhatsApp floating chat button
   =========================================================== */
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:999;
  display:flex;
  align-items:center;
}
.whatsapp-float .wa-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  box-shadow:0 12px 28px -8px rgba(0,0,0,0.45), 0 0 0 0 rgba(37,211,102,0.6);
  color:#fff;
  text-decoration:none;
  animation:wa-pulse 2.4s infinite;
  transition:transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float .wa-btn:hover{
  transform:scale(1.08);
  box-shadow:0 16px 32px -8px rgba(0,0,0,0.5);
}
.whatsapp-float .wa-btn svg{width:32px; height:32px;}
.whatsapp-float .wa-tooltip{
  position:absolute;
  right:72px;
  bottom:14px;
  background:var(--navy-900);
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  font-size:0.85rem;
  font-weight:600;
  white-space:nowrap;
  box-shadow:0 10px 24px -10px rgba(0,0,0,0.5);
  opacity:0;
  transform:translateX(8px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.whatsapp-float .wa-tooltip::after{
  content:"";
  position:absolute;
  right:-6px;
  top:50%;
  transform:translateY(-50%);
  border-width:6px 0 6px 6px;
  border-style:solid;
  border-color:transparent transparent transparent var(--navy-900);
}
.whatsapp-float:hover .wa-tooltip{
  opacity:1;
  transform:translateX(0);
}
@keyframes wa-pulse{
  0%{box-shadow:0 12px 28px -8px rgba(0,0,0,0.45), 0 0 0 0 rgba(37,211,102,0.55);}
  70%{box-shadow:0 12px 28px -8px rgba(0,0,0,0.45), 0 0 0 14px rgba(37,211,102,0);}
  100%{box-shadow:0 12px 28px -8px rgba(0,0,0,0.45), 0 0 0 0 rgba(37,211,102,0);}
}
@media (max-width:600px){
  .whatsapp-float{right:16px; bottom:16px;}
  .whatsapp-float .wa-btn{width:54px; height:54px;}
  .whatsapp-float .wa-btn svg{width:28px; height:28px;}
  .whatsapp-float .wa-tooltip{display:none;}
}
