/*
Theme Name: FSi Financial Services Institute v11
Theme URI: https://fsimauritius.com
Author: Financial Services Institute
Author URI: https://fsimauritius.com
Description: Official website theme for the Financial Services Institute (FSi), Mauritius. Version 6 — transparent footer logo, no white background box.
Version: 6.0.0
License: All Rights Reserved
License URI: https://fsimauritius.com
Text Domain: fsi
Tags: financial, corporate, custom-logo, full-width-template
*/

/* ================================================
   FSi — Financial Services Institute
   Brand colours: #002169 | #0083c1 | #3dae2b
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #002169;
  --navy-dk: #001245;
  --blue:    #0083c1;
  --green:   #3dae2b;
  --white:   #ffffff;
  --grey-1:  #f3f5f9;
  --grey-2:  #e4e9f0;
  --grey-3:  #adb9cb;
  --grey-4:  #64748b;
  --text:    #1e2d45;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

em, i { font-style: normal; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--green); }


/* ── HEADER ───────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--grey-2);
  height: 116px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
img.logo {
  width: auto;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--grey-4);
  height: 116px; padding: 0 18px;
  display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--navy); border-bottom-color: var(--green); }
.main-nav .btn-cta {
  height: auto; padding: 12px 28px;
  margin-left: 10px; border-bottom: none;
  background: var(--navy); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.main-nav .btn-cta:hover { background: var(--green); border-color: transparent; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); }


/* ── MOBILE OVERLAY ───────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--navy-dk);
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 17px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); padding: 20px 0; width: 260px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s;
}
.mobile-nav a:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.mobile-nav a:hover { color: var(--white); }
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,0.6); font-size: 30px; line-height: 1;
  background: none; border: none; cursor: pointer;
}


/* ── SHARED TYPOGRAPHY ────────────────────────── */
.eyebrow {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}

.h-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px;
}
.h-title .thin { font-weight: 300; color: var(--blue); }
.h-title-white { color: var(--white); }
.h-title-white .thin { color: rgba(255,255,255,0.55); }

.rule { width: 32px; height: 2px; background: var(--green); margin-bottom: 22px; }
.rule-white { background: rgba(255,255,255,0.25); }

.body-copy {
  font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--grey-4); max-width: 560px;
}
.body-copy-white { color: rgba(255,255,255,0.65); }


/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 34px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.btn-primary:hover { background: var(--green); border-color: var(--green); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--grey-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: var(--white); color: var(--navy); border: 2px solid var(--white); }
.btn-white:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-register { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.btn-register:hover { background: var(--green); border-color: var(--green); }


/* ── HERO ─────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 56fr 44fr;
  min-height: 480px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 60px;
  border-right: 1px solid var(--grey-2);
}
.hero-title {
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 700; color: var(--navy);
  line-height: 1.07; letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-title .blue { color: var(--blue); font-weight: 300; }
.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--grey-4);
  max-width: 460px; line-height: 1.85; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right {
  background: var(--navy); position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 44px 56px;
}
.hero-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 220px; font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.06em; line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.hero-bar { width: 32px; height: 3px; background: var(--green); margin-bottom: 24px; }
.hero-card { border-left: 3px solid rgba(255,255,255,0.12); padding-left: 24px; }
.hero-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.hero-card-text {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.82); line-height: 1.65; max-width: 340px;
}


/* ── COUNTERS ─────────────────────────────────── */
.counters {
  background: var(--navy-dk);
  padding: 72px 60px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background-color: rgba(255,255,255,0.06);
}
.counter-wrap { background: var(--navy-dk); padding: 52px 48px; text-align: center; }
.counter-num {
  font-size: clamp(44px, 5vw, 68px); font-weight: 700;
  color: var(--white); line-height: 1; letter-spacing: -0.03em; margin-bottom: 6px;
}
.counter-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}


/* ── ABOUT ────────────────────────────────────── */
.about {
  background: var(--white); padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.pillars { display: flex; flex-direction: column; border-top: 1px solid var(--grey-2); }
.pillar {
  display: grid; grid-template-columns: 50px 1fr; gap: 0 18px;
  padding: 22px 0; border-bottom: 1px solid var(--grey-2); align-items: start;
}
.pillar-n { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--blue); padding-top: 2px; }
.pillar-title { font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--navy); margin-bottom: 5px; }
.pillar-body { font-size: 13.5px; font-weight: 300; color: var(--grey-4); line-height: 1.7; }


/* ── VISION MISSION ───────────────────────────── */
.vismis { background: var(--navy); display: grid; grid-template-columns: repeat(3, 1fr); }
.vm-cell { padding: 60px 52px; border-right: 1px solid rgba(255,255,255,0.07); }
.vm-cell:last-child { border-right: none; }
.vm-label { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.vm-text { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.82); line-height: 1.75; }


/* ── PROGRAMMES ───────────────────────────────── */
.programmes { background: var(--grey-1); padding: 100px 60px; }
.section-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--grey-2); }
.prog-card { background: var(--white); padding: 32px 26px; display: flex; flex-direction: column; gap: 10px; transition: background 0.22s; }
.prog-card:hover { background: var(--navy); }
.prog-card:hover .prog-cat { color: var(--green); }
.prog-card:hover .prog-name { color: var(--white); }
.prog-card:hover .prog-desc { color: rgba(255,255,255,0.48); }
.prog-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); transition: color 0.22s; }
.prog-name { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.3; letter-spacing: -0.01em; transition: color 0.22s; }
.prog-desc { font-size: 13px; font-weight: 300; color: var(--grey-4); line-height: 1.7; flex: 1; transition: color 0.22s; }


/* ── TRAININGS ────────────────────────────────── */
.trainings { background: var(--white); padding: 100px 60px; }
.accordion { border-top: 1px solid var(--grey-2); }
.acc-item { border-bottom: 1px solid var(--grey-2); }
.acc-btn { width: 100%; background: none; border: none; cursor: pointer; padding: 26px 0; display: grid; grid-template-columns: 1fr 38px; gap: 20px; align-items: center; text-align: left; }
.acc-btn:hover .acc-title { color: var(--blue); }
.acc-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.acc-title { font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 10px; transition: color 0.2s; }
.acc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-size: 11px; font-weight: 500; padding: 4px 13px; background: var(--grey-1); color: var(--grey-4); letter-spacing: 0.03em; }
.tag-date { background: rgba(0,33,105,0.06); color: var(--navy); font-weight: 600; }
.tag-fee { background: rgba(61,174,43,0.1); color: var(--green); font-weight: 700; }
.acc-icon { width: 36px; height: 36px; background: var(--grey-1); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 300; color: var(--navy); flex-shrink: 0; transition: background 0.2s, transform 0.28s, color 0.2s; }
.acc-item.open .acc-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.acc-body { display: none; padding-bottom: 36px; }
.acc-item.open .acc-body { display: block; }
.acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-top: 4px; }
.col-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.topic-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.topic-list li { font-size: 13.5px; font-weight: 300; color: var(--grey-4); padding-left: 16px; position: relative; line-height: 1.6; }
.topic-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 1px; background: var(--green); }
.detail-box { background: var(--grey-1); padding: 22px; margin-bottom: 18px; }
.detail-row { display: grid; grid-template-columns: 64px 1fr; gap: 6px 14px; margin-bottom: 7px; align-items: start; }
.detail-row:last-child { margin-bottom: 0; }
.d-key { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-3); padding-top: 3px; }
.d-val { font-size: 13.5px; font-weight: 400; color: var(--navy); }
.trainer-name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.trainer-role { font-size: 13px; font-weight: 300; color: var(--grey-4); line-height: 1.55; }
.speakers { display: flex; flex-direction: column; gap: 14px; }
.spk { padding-left: 14px; border-left: 2px solid var(--blue); }
.spk-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.spk-role { font-size: 12.5px; font-weight: 300; color: var(--grey-4); }
.reg-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 18px; border-top: 1px solid var(--grey-2); margin-top: 20px; }
.reg-contact { font-size: 13px; font-weight: 300; color: var(--grey-4); }
.reg-contact a { color: var(--blue); }
.reg-contact a:hover { color: var(--navy); }


/* ── IN-HOUSE ─────────────────────────────────── */
.inhouse { background: var(--navy); padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.inhouse-feats { display: flex; flex-direction: column; }
.inhouse-feat { display: grid; grid-template-columns: 38px 1fr; gap: 0 16px; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: start; transition: background 0.2s; }
.inhouse-feat:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.inhouse-feat:hover { background: rgba(255,255,255,0.04); }
.feat-n { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--blue); padding-top: 2px; }
.feat-title { font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--white); margin-bottom: 5px; }
.feat-body { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.65; }


/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials { background: var(--grey-1); padding: 100px 60px; }
.test-head { text-align: center; margin-bottom: 56px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--grey-2); }
.test-card { background: var(--white); padding: 36px 30px; display: flex; flex-direction: column; gap: 18px; transition: background 0.22s; }
.test-card:hover { background: var(--navy); }
.test-card:hover .test-q { color: rgba(255,255,255,0.78); }
.test-card:hover .test-name { color: var(--green); }
.test-card:hover .test-prog { color: rgba(255,255,255,0.38); }
.test-q { font-size: 14.5px; font-weight: 300; color: var(--grey-4); line-height: 1.75; flex: 1; transition: color 0.22s; }
.test-name { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 3px; transition: color 0.22s; }
.test-prog { font-size: 11.5px; font-weight: 300; color: var(--grey-3); transition: color 0.22s; }


/* ── CONTACT ──────────────────────────────────── */
.contact { background: var(--white); padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 26px; margin-top: 6px; }
.cd-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.cd-val { font-size: 15px; font-weight: 400; color: var(--navy); line-height: 1.55; }
.cd-val a { color: var(--navy); transition: color 0.2s; }
.cd-val a:hover { color: var(--blue); }
.cform { display: flex; flex-direction: column; gap: 16px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-3); }
.fg input, .fg textarea, .fg select { background: var(--grey-1); border: 1px solid var(--grey-2); color: var(--navy); padding: 13px 15px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 400; outline: none; width: 100%; appearance: none; border-radius: 0; transition: border-color 0.2s, background 0.2s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blue); background: var(--white); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--grey-3); }
.fg textarea { min-height: 116px; resize: vertical; }
.btn-send { background: var(--navy); color: var(--white); border: none; padding: 15px; width: 100%; font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.btn-send:hover { background: var(--green); }
.form-msg { font-size: 13px; text-align: center; min-height: 18px; }


/* ── FOOTER ───────────────────────────────────── */
.site-footer { background: var(--navy-dk); padding: 68px 60px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 26px; }
.footer-logo { margin-bottom: 20px; background: none; }
.footer-logo img.logo {
  max-height: 66px;
  width: auto;
  opacity: 1;
  display: block;
  object-fit: contain;
  background: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.footer-logo a { display: inline-block; opacity: 1; background: none; }
.footer-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.8; max-width: 270px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.26); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.26); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }


/* ── REVEAL ───────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.shown { opacity: 1; transform: translateY(0); }


/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .site-header { padding: 0 28px; height: 88px; }
  img.logo { max-height: 62px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 28px 44px; border-right: none; border-bottom: 1px solid var(--grey-2); }
  .hero-right { min-height: 260px; padding: 36px 28px; }
  .counters { grid-template-columns: 1fr; gap: 0; }
  .counter-wrap { padding: 40px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .about { grid-template-columns: 1fr; gap: 52px; padding: 72px 28px; }
  .vismis { grid-template-columns: 1fr; }
  .vm-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .vm-cell:last-child { border-bottom: none; }
  .programmes { padding: 72px 28px; }
  .trainings { padding: 72px 28px; }
  .acc-grid { grid-template-columns: 1fr; gap: 32px; }
  .inhouse { grid-template-columns: 1fr; gap: 52px; padding: 72px 28px; }
  .testimonials { padding: 72px 28px; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; gap: 52px; padding: 72px 28px; }
  .site-footer { padding: 56px 28px 24px; }
}

@media (max-width: 640px) {
  .site-header { height: 76px; padding: 0 20px; }
  img.logo { max-height: 50px; }
  .footer-logo img.logo { max-height: 50px; }
  .hero-left { padding: 40px 20px 36px; }
  .hero-right { padding: 36px 20px; min-height: 260px; }
  .hero-watermark { font-size: 140px; }
  .about, .programmes, .trainings, .inhouse, .testimonials, .contact { padding: 60px 20px; }
  .site-footer { padding: 48px 20px 22px; }
  .prog-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .frow { grid-template-columns: 1fr; }
  .section-hd { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}


/* ── PRIVACY MODAL ────────────────────────────── */
.privacy-trigger {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.26);
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
}
.privacy-trigger:hover { color: rgba(255,255,255,0.6); }

.privacy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,18,69,0.72);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}
.privacy-overlay.is-open {
  display: flex;
}

.privacy-modal {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  padding: 48px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.privacy-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--grey-3);
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  font-family: inherit;
}
.privacy-close:hover { color: var(--navy); }

.privacy-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.privacy-rule {
  width: 32px;
  height: 2px;
  background: var(--green);
  margin-bottom: 22px;
}

.privacy-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.85;
}

.privacy-body a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.privacy-body a:hover { color: var(--navy); }

@media (max-width: 640px) {
  .privacy-modal { padding: 36px 24px; }
  .privacy-title { font-size: 19px; }
}
