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

:root{
  --blue:#23356b;
  --blue-dark:#1a2a57;
  --gold:#c49a3a;
  --text:#2f2f2f;
  --line:#e8e8e8;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:#fff;
  color:var(--text);
}

a{text-decoration:none;color:inherit;}
button{font:inherit;border:none;background:none;}

.container{
  width:min(1240px, calc(100% - 40px));
  margin:auto;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.header-topbar{
  height:14px;
  background:linear-gradient(90deg,var(--blue),#31488d);
}

.header-inner{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:55px;
}

/* NAV */
.nav{
  display:flex;
  gap:6px;
}

.nav-link,
.nav-button{
  padding:10px 14px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  color:#555;
  border-radius:8px;
  cursor:pointer;
}

.nav-link:hover,
.nav-button:hover{
  background:#f3f6fb;
  color:var(--blue-dark);
}

.nav-link.active{
  color:var(--blue-dark);
}

/* DROPDOWN */
.nav-item{position:relative;}

.dropdown{
  position:absolute;
  top:110%;
  left:0;
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  padding:8px;
  display:none;
  min-width:200px;
}

.dropdown a{
  display:block;
  padding:10px;
  font-size:14px;
  border-radius:6px;
}

.dropdown a:hover{
  background:#f3f6fb;
}

.nav-item:hover .dropdown{
  display:block;
}

/* HAMBURGER */
.hamburger{
  display:none;
}

/* HERO */
.hero-home{
  padding:40px 0;
  background:#f7f8fc;
}

.hero-box{
  background:linear-gradient(135deg,#0a183b,#1c2f6b);
  border-radius:20px;
  padding:50px;
  color:#fff;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

.hero-copy h1{
  font-size:64px;
  margin-bottom:15px;
}

.hero-lead{
  font-size:20px;
  margin-bottom:15px;
}

.hero-desc{
  font-size:15px;
  opacity:.8;
}

.hero-actions{
  margin-top:25px;
  display:flex;
  gap:12px;
}

.hero-btn{
  padding:12px 20px;
  border-radius:30px;
  font-weight:700;
}

.hero-btn-primary{
  background:var(--gold);
  color:#111;
}

.hero-btn-secondary{
  border:1px solid #fff;
  color:#fff;
}

.hero-media img{
  width:100%;
  border-radius:15px;
}

/* SERVICES */
.services-home{
  padding:50px 0;
}

.section-heading h2{
  font-size:36px;
  margin-bottom:10px;
  color:var(--blue-dark);
}

.section-heading p{
  color:#666;
  margin-bottom:30px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card{
  padding:25px;
  border-radius:15px;
  background:#fff;
  border:1px solid #eee;
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-5px);
}

.service-icon{
  width:50px;
  height:50px;
  background:var(--blue);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  margin-bottom:15px;
}

.service-card h3{
  margin-bottom:10px;
  color:var(--blue-dark);
}

.service-card p{
  font-size:14px;
  color:#666;
}

.service-link{
  display:inline-block;
  margin-top:10px;
  color:var(--gold);
  font-weight:bold;
}

/* RESPONSIVE */
@media(max-width:900px){
  .nav{display:none;}

  .hamburger{
    display:block;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:1fr;
  }
}

/* NEWS HOME */
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
}

.section-kicker::after{
  content:"";
  width:46px;
  height:1px;
  background:rgba(196,154,58,.5);
}

.news-home{
  padding:50px 0 60px;
  background:linear-gradient(180deg,#f7f9fd 0%, #ffffff 100%);
}

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

.news-card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e9edf6;
  box-shadow:0 16px 36px rgba(16,34,76,.06);
  transition:.28s ease;
}

.news-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(16,34,76,.12);
}

.news-card a{
  display:block;
  color:inherit;
}

.news-image{
  overflow:hidden;
}

.news-image img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
  transition:.35s ease;
}

.news-card:hover .news-image img{
  transform:scale(1.04);
}

.news-body{
  padding:22px;
}

.news-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  margin-bottom:14px;
  background:rgba(35,53,107,.08);
  color:var(--blue-dark);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.news-body h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.35;
  color:var(--blue-dark);
}

.news-body p{
  margin:0 0 14px;
  font-size:15px;
  line-height:1.8;
  color:#627089;
}

.news-meta{
  font-size:13px;
  font-weight:700;
  color:var(--gold);
}

@media(max-width:1100px){
  .news-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  .news-home{
    padding:40px 0 44px;
  }

  .news-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .news-image img{
    height:210px;
  }

  .news-body{
    padding:18px;
  }

  .news-body h3{
    font-size:20px;
  }

  .news-body p{
    font-size:14px;
  }
}

/* ABOUT BRIEF */
.about-brief{
  padding:56px 0;
  background:#ffffff;
}

.about-brief-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:center;
}

.about-brief-media{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(16,34,76,.10);
}

.about-brief-media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
}

.about-brief-copy h2{
  margin:0 0 16px;
  font-size:42px;
  line-height:1.18;
  color:var(--blue-dark);
  letter-spacing:-.02em;
}

.about-brief-copy p{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.9;
  color:#627089;
}

.about-brief-points{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin:24px 0 22px;
}

.about-point{
  padding:16px 18px;
  border-radius:16px;
  background:#f7f9fd;
  border:1px solid #e8edf6;
}

.about-point strong{
  display:block;
  margin-bottom:4px;
  font-size:17px;
  color:var(--blue-dark);
}

.about-point span{
  display:block;
  font-size:14px;
  line-height:1.7;
  color:#66748a;
}

.about-brief-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.about-brief-link::after{
  content:"→";
  transition:.2s ease;
}

.about-brief-link:hover::after{
  transform:translateX(3px);
}

/* CTA HOME */
.cta-home{
  padding:16px 0 70px;
  background:linear-gradient(180deg,#ffffff 0%, #f7f9fd 100%);
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:34px 38px;
  border-radius:26px;
  background:linear-gradient(135deg,#0f204b 0%, #213972 100%);
  box-shadow:0 24px 50px rgba(12,28,66,.18);
  color:#fff;
}

.cta-copy{
  max-width:760px;
}

.section-kicker-light{
  color:#f0d48c;
}

.section-kicker-light::after{
  background:rgba(240,212,140,.5);
}

.cta-copy h2{
  margin:0 0 14px;
  font-size:40px;
  line-height:1.18;
  letter-spacing:-.02em;
}

.cta-copy p{
  margin:0;
  font-size:16px;
  line-height:1.9;
  color:rgba(240,244,251,.85);
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  flex:0 0 auto;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  transition:.25s ease;
}

.cta-btn-primary{
  background:linear-gradient(135deg,#e4c777 0%, #c89d3a 100%);
  color:#182544;
}

.cta-btn-primary:hover{
  transform:translateY(-2px);
}

.cta-btn-secondary{
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.04);
}

.cta-btn-secondary:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.08);
}

@media(max-width:1100px){
  .about-brief-grid{
    grid-template-columns:1fr;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:760px){
  .about-brief{
    padding:40px 0;
  }

  .about-brief-copy h2{
    font-size:30px;
    line-height:1.22;
  }

  .about-brief-copy p{
    font-size:14px;
    line-height:1.85;
  }

  .about-brief-media img{
    min-height:260px;
  }

  .cta-home{
    padding:8px 0 42px;
  }

  .cta-box{
    padding:24px 20px;
    border-radius:20px;
  }

  .cta-copy h2{
    font-size:28px;
    line-height:1.24;
  }

  .cta-copy p{
    font-size:14px;
    line-height:1.8;
  }

  .cta-actions{
    width:100%;
  }

  .cta-btn{
    width:100%;
    min-height:48px;
  }
}

/* STATS HOME */
.stats-home{
  padding: 10px 0 44px;
  background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.stats-box{
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid #e8edf7;
  box-shadow: 0 18px 40px rgba(16,34,76,.07);
}

.stats-intro{
  max-width: 760px;
  margin-bottom: 24px;
}

.stats-intro h2{
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.14;
  color: var(--blue-dark);
  letter-spacing: -.02em;
}

.stats-intro p{
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #627089;
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.stat-card{
  padding: 24px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #23356b 0%, #31498c 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(35,53,107,.16);
}

.stat-card strong{
  display: block;
  margin-bottom: 10px;
  font-size: 42px;
  line-height: 1;
  color: #f1d48b;
  font-weight: 800;
}

.stat-card span{
  display: block;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(240,244,251,.92);
}

@media(max-width:1100px){
  .stats-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media(max-width:760px){
  .stats-home{
    padding: 0 0 30px;
  }

  .stats-box{
    padding: 22px 18px;
    border-radius: 18px;
  }

  .stats-intro{
    margin-bottom: 18px;
  }

  .stats-intro h2{
    font-size: 28px;
    line-height: 1.2;
  }

  .stats-intro p{
    font-size: 14px;
    line-height: 1.8;
  }

  .stats-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stat-card{
  padding: 24px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #23356b 0%, #31498c 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(35,53,107,.16);
  overflow: hidden;
}

  .stat-card strong{
  display:block;
  margin-bottom:10px;
  font-size:clamp(24px, 2vw, 42px);
  line-height:1.1;
  color:#f1d48b;
  font-weight:800;
  word-break:break-word;
}

  .stat-card span{
    font-size: 14px;
  }
}

/* FOOTER PREMIUM */
.footer-premium{
  margin-top: 0;
  background: linear-gradient(135deg, #0c1837 0%, #15295a 100%);
  color: #fff;
}

.footer-topline{
  height: 14px;
  background: linear-gradient(90deg, #c49a3a 0%, #e3c778 50%, #c49a3a 100%);
}

.footer-main{
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .8fr 1fr;
  gap: 28px;
  padding: 52px 0 34px;
}

.footer-brand img{
  width: 240px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-brand p{
  margin: 0;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(238,242,250,.78);
}

.footer-col h3{
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.2;
  color: #f0d48c;
  letter-spacing: .01em;
}

.footer-col ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li{
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(238,242,250,.78);
}

.footer-col a{
  color: rgba(238,242,250,.78);
  transition: .22s ease;
}

.footer-col a:hover{
  color: #ffffff;
}

.footer-contact li{
  margin-bottom: 10px;
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p{
  margin: 0;
  font-size: 14px;
  color: rgba(238,242,250,.68);
}

.footer-bottom-links{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a{
  font-size: 14px;
  font-weight: 700;
  color: rgba(238,242,250,.72);
  transition: .2s ease;
}

.footer-bottom-links a:hover{
  color: #ffffff;
}

@media(max-width:1100px){
  .footer-main{
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand{
    grid-column: 1 / -1;
  }
}

@media(max-width:760px){
  .footer-topline{
    height: 10px;
  }

  .footer-main{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 0 24px;
  }

  .footer-brand p{
    font-size: 14px;
    line-height: 1.85;
  }

  .footer-col h3{
    margin-bottom: 12px;
    font-size: 17px;
  }

  .footer-col li{
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0 24px;
  }

  .footer-bottom p,
  .footer-bottom-links a{
    font-size: 13px;
  }

  .footer-bottom-links{
    gap: 14px;
  }
}

/* ARTICLE PAGE */
.article-page{
  padding: 34px 0 70px;
  background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.article-shell{
  max-width: 980px;
  margin: 0 auto;
}

.article-hero{
  margin-bottom: 26px;
}

.article-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
}

.article-kicker::after{
  content:"";
  width:46px;
  height:1px;
  background:rgba(196,154,58,.5);
}

.article-title{
  margin:0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--blue-dark);
}

.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  margin:0;
  font-size:14px;
  font-weight:700;
  color:#6b768b;
}

.article-cover{
  margin: 24px 0 28px;
  border-radius: 24px;
  overflow: hidden;
  border:1px solid #e8edf7;
  box-shadow:0 20px 46px rgba(16,34,76,.10);
  background:#fff;
}

.article-cover img{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
}

.article-content{
  background:#fff;
  border:1px solid #e8edf7;
  border-radius:24px;
  padding:34px 34px 30px;
  box-shadow:0 16px 36px rgba(16,34,76,.06);
}

.article-content p{
  margin:0 0 18px;
  font-size:17px;
  line-height:1.95;
  color:#4f5f7a;
}

.article-content h2{
  margin:26px 0 14px;
  font-size:30px;
  line-height:1.2;
  color:var(--blue-dark);
}

.article-content a{
  color:var(--blue-dark);
  font-weight:700;
}

.article-content strong{
  color:var(--blue-dark);
}

.article-links{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid #e9edf6;
}

.article-links h3{
  margin:0 0 14px;
  font-size:20px;
  color:var(--blue-dark);
}

.article-links ul{
  margin:0;
  padding-left:18px;
}

.article-links li{
  margin-bottom:10px;
  color:#4f5f7a;
}

@media(max-width:760px){
  .article-page{
    padding: 20px 0 42px;
  }

  .article-cover img{
    height:240px;
  }

  .article-content{
    padding:22px 18px 18px;
    border-radius:18px;
  }

  .article-content p{
    font-size:15px;
    line-height:1.85;
  }

  .article-content h2{
    font-size:24px;
  }
}

/* GALERI */
.galeri-section{
  padding:60px 0;
}

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

.galeri-item{
  overflow:hidden;
  border-radius:16px;
  cursor:pointer;
}

.galeri-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.4s;
}

.galeri-item:hover img{
  transform:scale(1.1);
}

@media(max-width:768px){
  .galeri-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

/* CONTACT FORM */
.contact-form-wrap{
  background:#fff;
  border:1px solid #e8edf7;
  border-radius:24px;
  padding:30px;
  box-shadow:0 16px 36px rgba(16,34,76,.06);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-group label{
  font-size:14px;
  font-weight:700;
  color:var(--blue-dark);
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #dbe4f3;
  border-radius:14px;
  background:#f9fbff;
  font-size:15px;
  color:#384760;
  outline:none;
  transition:.2s ease;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:#9fb3dd;
  background:#fff;
}

.form-group-full{
  grid-column:1 / -1;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

@media(max-width:760px){
  .contact-form-wrap{
    padding:20px 16px;
    border-radius:18px;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .form-group-full{
    grid-column:auto;
  }

  .contact-actions{
    flex-direction:column;
  }

  .contact-actions .hero-btn{
    width:100%;
    justify-content:center;
  }
}