@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root{
  --ink: #161a25;
  --body-c: #5b6472;
  --blue: #3d5afe;
  --blue-2: #6c8cff;
  --blue-deep: #2946e0;
  --blue-pale: #eef1ff;
  --blue-pale-2: #e3e9ff;
  --surface: #f6f8fc;
  --white: #ffffff;
  --rule: rgba(22,26,37,0.08);
  --shadow: 0 20px 45px rgba(30,40,80,0.09);
  --shadow-sm: 0 10px 24px rgba(30,40,80,0.08);
  --max: 1080px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--white);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3{ font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
p{ margin: 0; }
a{ color: inherit; }
img{ max-width:100%; display:block; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 28px; }
::selection{ background: var(--blue-pale-2); color: var(--blue-deep); }

/* ---------- nav ---------- */
nav{ position: sticky; top:0; z-index: 40; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--rule); }
nav .wrap{ display:flex; align-items:center; justify-content:space-between; height: 68px; max-width: 1140px; }
.brand{ color: var(--ink); font-size: 1.1rem; font-weight: 800; text-decoration: none; display:flex; align-items:center; gap:8px; }
.brand::before{ content:""; width:9px; height:9px; border-radius:3px; background: var(--blue); display:inline-block; }
.navlinks{ display:flex; align-items:center; gap: 26px; }
.navlinks a{ color: var(--body-c); text-decoration:none; font-size: .92rem; font-weight: 600; transition: color .2s ease; }
.navlinks a:hover{ color: var(--blue); }
.navlinks a.active{ color: var(--blue); }
.navcta{ background: var(--blue); color: var(--white) !important; padding: 10px 20px; border-radius: 100px; font-weight: 700; font-size: .88rem !important; box-shadow: 0 8px 20px rgba(61,90,254,0.28); transition: transform .15s ease, box-shadow .15s ease; }
.navcta:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(61,90,254,0.36); color: var(--white) !important; }
@media (max-width:840px){ .navlinks a:not(.navcta){ display:none; } }

/* ---------- generic section ---------- */
section{ padding: 90px 0; }
.section-head{ max-width: 600px; margin-bottom: 46px; }
.section-label{ display:inline-block; font-size: .8rem; font-weight: 700; letter-spacing:.02em; color: var(--blue); margin-bottom: 12px; padding: 5px 14px; background: var(--blue-pale); border-radius: 100px; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.2; color: var(--ink); }
.section-head p{ margin-top: 14px; color: var(--body-c); font-size: 1rem; max-width: 540px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- page hero (inner pages) ---------- */
.page-hero{ position:relative; background: linear-gradient(180deg, var(--blue-pale) 0%, var(--white) 100%); padding: 76px 0 60px; overflow:hidden; }
.page-hero::before{ content:""; position:absolute; top:-120px; right:-120px; width:340px; height:340px; background: var(--blue-pale-2); border-radius: 50%; filter: blur(10px); opacity:.7; }
.page-hero .wrap{ position:relative; }
.page-hero h1{ font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1.15; }
.page-hero p{ margin-top: 14px; color: var(--body-c); max-width: 560px; font-size: 1.02rem; }

/* ---------- buttons ---------- */
.btn{ display:inline-block; padding: 14px 28px; font-weight: 700; font-size: .95rem; border-radius: 100px; text-decoration:none; cursor:pointer; border: 1px solid transparent; font-family: "Plus Jakarta Sans", sans-serif; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease; }
.btn-gold{ background: var(--blue); color: var(--white); box-shadow: 0 10px 24px rgba(61,90,254,0.3); }
.btn-gold:hover{ background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(61,90,254,0.36); }
.btn-ghost{ background: var(--white); color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover{ border-color: var(--blue); color: var(--blue); }
.btn-ghost.dark{ color: var(--ink); border-color: var(--rule); }
.btn-ghost.dark:hover{ border-color: var(--blue); color: var(--blue); }
.btn-white{ background: var(--white); color: var(--blue-deep); box-shadow: var(--shadow-sm); }
.btn-white:hover{ transform: translateY(-2px); }
.btn-outline-white{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover{ border-color: var(--white); }

/* ---------- quote strip ---------- */
.quote-strip{ padding: 60px 0; text-align:center; background: var(--surface); }
.quote-strip blockquote{ font-family: "Fraunces", serif; font-style: italic; font-weight: 500; font-size: clamp(1.15rem, 2.2vw, 1.45rem); max-width: 640px; margin: 0 auto; line-height: 1.5; color: var(--ink); }
.quote-strip cite{ display:block; margin-top: 16px; font-style: normal; font-size: .85rem; color: var(--blue); font-weight: 700; }

/* ---------- timeline (profil page) ---------- */
.timeline{ position:relative; padding-left: 30px; }
.timeline::before{ content:""; position:absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--blue-pale-2); border-radius: 2px; }
.t-item{ position: relative; padding-bottom: 32px; }
.t-item:last-child{ padding-bottom:0; }
.t-item::before{ content:""; position:absolute; left: -30px; top: 3px; width: 12px; height:12px; border-radius:50%; background: var(--white); border: 3px solid var(--blue); }
.t-year{ font-size: .82rem; font-weight:700; color: var(--blue); }
.t-role{ font-size: 1.1rem; font-weight:700; margin-top: 4px; color: var(--ink); }
.t-note{ font-size: .9rem; color: var(--body-c); margin-top: 3px; font-weight:400; }

/* ---------- pillars ---------- */
.pillars{ display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pillar{ padding: 28px 22px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--rule); }
.pillar .icon-badge{ width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%); display:flex; align-items:center; justify-content:center; margin-bottom: 18px; }
.pillar svg{ width: 22px; height: 22px; stroke: var(--white); fill:none; stroke-width: 1.8; }
.pillar h3{ font-size: 1.05rem; color: var(--ink); }
.pillar p{ font-size: .88rem; color: var(--body-c); margin-top: 8px; font-weight:400; }

/* ---------- services ---------- */
.svc-list{ display:flex; flex-direction:column; gap: 14px; }
.svc{ display:grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 24px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--rule); align-items:center; }
.svc-num{ width:48px; height:48px; border-radius: 14px; background: var(--blue-pale); color: var(--blue-deep); font-weight: 800; font-size: 1.1rem; display:flex; align-items:center; justify-content:center; }
.svc h3{ font-size: 1.1rem; color: var(--ink); }
.svc p{ font-size: .92rem; color: var(--body-c); margin-top: 5px; font-weight:400; }

/* ---------- footer ---------- */
footer{ background: var(--white); color: var(--ink); padding: 50px 0 36px; border-top: 1px solid var(--rule); }
.values-row{ display:flex; flex-wrap:wrap; margin-bottom: 26px; }
.values-row span{ font-size: .85rem; font-weight:700; color: var(--blue-deep); padding: 0 18px 0 0; margin-right: 18px; border-right: 1px solid var(--rule); }
.values-row span:last-child{ border-right:none; }
footer .closing{ font-family: "Fraunces", serif; font-style: italic; color: var(--body-c); font-size: .95rem; max-width: 580px; line-height: 1.6; }
footer .copy{ margin-top: 22px; font-size: .8rem; color: #9aa1ad; }
.foot-links{ margin-top: 20px; display:flex; gap: 18px; flex-wrap:wrap; }
.foot-links a{ font-size: .85rem; color: var(--blue-deep); text-decoration:none; font-weight: 600; }
.foot-links a:hover{ text-decoration:underline; }

/* ---------- CTA banner (used across pages) ---------- */
.cta-banner{ position:relative; overflow:hidden; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); border-radius: 28px; padding: 52px 44px; color: var(--white); }
.cta-banner::before{ content:""; position:absolute; top:-60px; right:-60px; width:220px; height:220px; background: rgba(255,255,255,0.14); border-radius:50%; }
.cta-banner::after{ content:""; position:absolute; bottom:-80px; left:20%; width:180px; height:180px; background: rgba(255,255,255,0.08); border-radius:50%; }
.cta-banner .inner{ position:relative; display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap; }
.cta-banner h2{ color: var(--white); font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.cta-banner p{ color: rgba(255,255,255,0.85); margin-top: 8px; max-width: 420px; }
.cta-banner .btns{ display:flex; gap: 12px; flex-wrap:wrap; }

@media (max-width: 860px){
  .pillars{ grid-template-columns: 1fr 1fr; }
  section{ padding: 60px 0; }
  .cta-banner .inner{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 520px){
  .pillars{ grid-template-columns: 1fr; }
  .wrap{ padding: 0 20px; }
  .cta-banner{ padding: 36px 24px; }
}
