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

:root {
  --bg:      #f0f4f8;
  --surface: #ffffff;
  --border:  #d1dde8;
  --text:    #1a2533;
  --muted:   #56708a;
  --accent1: #0057a8;
  --accent2: #b84300;
  --accent3: #007a55;
  --accent4: #6b21a8;
  --shadow:  rgba(20,50,80,.10);
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, #b0c8df 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .4;
  z-index: 0;
  pointer-events: none;
}

/* ── STICKY HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  width: 100%;
  background: linear-gradient(90deg, #003f80 0%, #0057a8 60%, #006acc 100%);
  box-shadow: 0 2px 10px rgba(0,30,80,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 70px;
  margin-bottom: 0;
}

.header-logo {
  position: absolute;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-emblem {
  height: 54px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.header-company {
  text-align: center;
}
.header-company .company-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.3;
}
.header-company .company-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,.65);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── STICKY RIBBON ── */
.ribbon {
  position: sticky; top: 70px; z-index: 100;
  width: 100%;
  background: linear-gradient(90deg, #162030 0%, #1e2e42 100%);
  color: #c8dff5;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(0,30,80,.20);
}

/* ── WRAPPER ── */
.wrapper {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 24px 52px;
}

/* ── PAGE HEADING ── */
.page-heading {
  text-align: center;
  margin-bottom: 14px;
  animation: fadeDown .7s ease both;
}

h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px;
  font-weight: 700; line-height: 1.18;
  color: var(--text); letter-spacing: 0.5px;
}
h1 .highlight { color: var(--accent1); }

.subtitle {
  margin-top: 12px; color: var(--muted);
  font-size: 14px; letter-spacing: 0.5px;
}

/* ── DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: 5px;
  margin: 0 0 10px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.divider span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px; letter-spacing: 2px;
  text-transform: uppercase; color: #1a2533;
  font-weight: 700;
  white-space: nowrap;
}

/* ── GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  animation: fadeUp .65s ease both;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.card:nth-child(1) { animation-delay:.10s; --ca: var(--accent1); }
.card:nth-child(2) { animation-delay:.22s; --ca: var(--accent2); }
.card:nth-child(3) { animation-delay:.34s; --ca: var(--accent3); }
.card:nth-child(4) { animation-delay:.46s; --ca: var(--accent4); }

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0,0,0,.13);
  border-color: var(--ca);
}

.card-strip { width:100%; height:5px; background: var(--ca); }

.card-body {
  padding: 20px 24px 0;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}

.card-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ca); font-weight: 600;
}

.card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 21px; font-weight: 700; color: var(--text); line-height: 1.2;
}

.card-desc {
  font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1;
}

/* ── BUTTON ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 16px 24px 24px;
  padding: 11px 22px; border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; color: #fff;
  background: var(--ca); border: none; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 14px -4px var(--ca);
  transition: box-shadow .3s, transform .2s, filter .3s;
}
.btn::after {
  content:''; position:absolute; inset:0;
  background: rgba(255,255,255,.18);
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.btn:hover { box-shadow: 0 8px 22px -4px var(--ca); transform: translateY(-2px); filter: brightness(1.08); }
.btn:hover::after { transform: scaleX(1); }
.btn svg { flex-shrink: 0; position: relative; z-index:1; }
.btn span { position:relative; z-index:1; }

/* ── FOOTER ── */
footer {
  position: relative; z-index:1;
  width: 100%;
  background: #162030;
  color: #c8d8e8;
  margin-top: 60px;
  padding: 44px 40px 28px;
  display: flex; flex-direction: column; align-items: center;
}

.footer-inner {
  width:100%; max-width: 980px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer-brand p {
  font-size: 13px; color: #7a96b0;
  max-width: 380px; line-height: 1.7;
}

.footer-contact h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #263a50;
}

.contact-item {
  display: flex; align-items: center; gap: 13px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-icon svg { stroke: #7eb8e8; }

.contact-detail { display:flex; flex-direction:column; }
.contact-detail .clabel {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: #4e6880; margin-bottom: 2px;
}
.contact-detail a, .contact-detail strong {
  color: #d0e8f8; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.contact-detail a:hover { color: #7eb8e8; text-decoration: underline; }

.footer-divider {
  width: 100%; max-width: 980px;
  height: 1px; background: #263a50;
  margin: 28px 0 16px;
}

.footer-copy {
  font-size: 12px; color: #3e5568; text-align: center; line-height: 1.8;
}

.footer-created-by {
  font-size: 12px;
  color: #5a7a96;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* ── KEYFRAMES ── */
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

@media(max-width:620px) {
  .grid { grid-template-columns: 1fr; }
  footer { padding:36px 20px 22px; }
  .footer-inner { grid-template-columns:1fr; }
  .header-company .company-name { font-size: 13px; letter-spacing: 0.5px; }
  .header-logo { left: 12px; }
  .logo-emblem { width: 42px; height: 42px; }
  .ribbon { font-size: 14px; letter-spacing: 1.5px; padding: 8px 12px; }
  h1 { font-size: 32px; }
}
