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

:root {
  --navy:   #0f2044;
  --navy2:  #1a3260;
  --gold:   #f0b429;
  --gold2:  #e09f1a;
  --light:  #f4f7fb;
  --white:  #ffffff;
  --gray:   #64748b;
  --text:   #1e293b;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15,32,68,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--light); line-height: 1.65; }
a { color: var(--navy); text-decoration: none; }
img { max-width: 100%; }

/* ── NAV ── */
header { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.3); }
nav { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { color: var(--white); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.80); font-size: .9rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.12); color: var(--white); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

@media(max-width:768px){
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 12px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); color: #fff; padding: 90px 24px 80px; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.75); margin: 20px auto 36px; max-width: 600px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all .2s; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,180,41,.4); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); margin-left: 12px; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── STATS BAR ── */
.stats { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 1100px; margin: 0 auto; padding: 28px 24px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat span { font-size: .85rem; color: var(--gray); }

/* ── SECTION ── */
.section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-white { background: var(--white); }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy p { color: #fff; }
.section-navy .sub { color: rgba(255,255,255,.6) !important; }

.badge { display: inline-block; background: rgba(240,180,41,.15); color: var(--gold2); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.sub { color: var(--gray); margin-top: 10px; font-size: 1.05rem; max-width: 600px; }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,32,68,.15); }
.card .icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(240,180,41,.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.card p { font-size: .9rem; color: var(--gray); line-height: 1.7; }
.card.navy { background: var(--navy); color: #fff; border-color: var(--navy2); }
.card.navy h3 { color: #fff; }
.card.navy p { color: rgba(255,255,255,.7); }

/* ── TIMELINE ── */
.timeline { position: relative; padding: 40px 0; margin-top: 32px; }
.timeline::before { content:''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: var(--border); transform: translateX(-50%); }
.tl-item { display: flex; justify-content: flex-end; width: 50%; padding-right: 48px; margin-bottom: 40px; position: relative; }
.tl-item.right { justify-content: flex-start; margin-left: 50%; padding-right: 0; padding-left: 48px; }
.tl-dot { position: absolute; right: -10px; top: 16px; width: 20px; height: 20px; background: var(--gold); border: 3px solid var(--white); border-radius: 50%; z-index: 1; box-shadow: 0 0 0 4px rgba(240,180,41,.25); }
.tl-item.right .tl-dot { right: auto; left: -10px; }
.tl-card { background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); border: 1px solid var(--border); max-width: 380px; }
.tl-card .date { font-size: .75rem; font-weight: 700; color: var(--gold2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.tl-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tl-card p { font-size: .85rem; color: var(--gray); }
.tl-card.done { border-left: 4px solid #22c55e; }
.tl-card.wip { border-left: 4px solid var(--gold); }
.tl-card.planned { border-left: 4px solid var(--border); }
@media(max-width:680px){
  .timeline::before { left: 20px; }
  .tl-item, .tl-item.right { width: 100%; margin-left: 0; padding-right: 0; padding-left: 52px; justify-content: flex-start; }
  .tl-dot, .tl-item.right .tl-dot { left: 10px; right: auto; }
}

/* ── FORM ── */
.form-wrap { max-width: 680px; }
label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; margin-top: 20px; }
input, select, textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: .95rem; color: var(--text); background: var(--white); transition: border .2s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,32,68,.08); }
textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px){ .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .8rem; color: var(--gray); margin-top: 6px; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 24px; font-weight: 600; font-size: .95rem; background: var(--white); border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--navy); }
.faq-q:hover { background: var(--light); }
.faq-q .arrow { font-size: 1.2rem; transition: transform .3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: var(--light); }
.faq-a p { padding: 16px 24px; color: var(--gray); font-size: .9rem; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 300px; }

/* ── PEOPLE ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }
.person { text-align: center; }
.avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 14px; color: var(--gold); font-weight: 700; }
.person h4 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.person span { font-size: .8rem; color: var(--gray); }

/* ── BLOG ── */
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .2s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-img { height: 180px; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 24px; }
.blog-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; color: var(--gold2); letter-spacing: .06em; }
.blog-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 8px 0 10px; line-height: 1.4; }
.blog-body p { font-size: .85rem; color: var(--gray); }
.blog-meta { font-size: .78rem; color: var(--gray); margin-top: 14px; display: flex; gap: 10px; align-items: center; }

/* ── FOOTER ── */
footer { background: #080f1e; color: rgba(255,255,255,.6); padding: 48px 24px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media(max-width:600px){ .footer-top { grid-template-columns: 1fr; } }
.footer-top h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 14px; }
.footer-top li { list-style: none; margin-bottom: 8px; }
.footer-top a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color .2s; }
.footer-top a:hover { color: var(--gold); }
.footer-desc { font-size: .85rem; line-height: 1.7; max-width: 300px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .8rem; }
.footer-bottom .logo { font-size: 1rem; }
.socials { display: flex; gap: 10px; margin-top: 10px; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); font-size: 1rem; transition: all .2s; text-decoration: none; }
.social-btn:hover { background: var(--gold); color: var(--navy); }
.tag { display: inline-block; background: rgba(240,180,41,.12); color: var(--gold2); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em; }
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ── PAGE HEADER ── */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy2)); color: #fff; padding: 64px 24px 56px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1.05rem; max-width: 560px; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }
