/* ===== CompTech International — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy:   #0A1628;
  --navy2:  #1E2D45;
  --teal:   #00C6A7;
  --teal2:  #00A88D;
  --amber:  #F59E0B;
  --white:  #FFFFFF;
  --grey1:  #F4F6FA;
  --grey2:  #A8B4C8;
  --grey3:  #6B7A94;
  --text:   #D0DCF0;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: var(--white); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); }
h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); }
h4 { font-size: 1rem; font-weight: 600; color: var(--teal); }
p  { font-size: 1rem; color: var(--grey2); }

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal2); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,198,167,0.12);
  transition: background var(--transition);
}
.nav__logo { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo img { height: 36px; width: auto; }
.nav__logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--white); letter-spacing: -0.01em; }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--grey2); transition: color var(--transition); }
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__cta { display: flex; gap: 0.75rem; align-items: center; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal); color: var(--navy);
}
.btn-primary:hover { background: var(--teal2); color: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,198,167,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: var(--radius-sm); }
.btn-amber { background: var(--amber); color: var(--navy); font-weight: 700; }
.btn-amber:hover { background: #e08c00; color: var(--navy); transform: translateY(-1px); }

/* ===== LAYOUT UTILS ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--navy); }
.section--alt  { background: var(--navy2); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--teal); text-transform: uppercase;
  margin-bottom: 1rem;
}
.tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0,198,167,0.12); color: var(--teal);
  padding: 0.3rem 0.75rem; border-radius: 99px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}

/* ===== CARDS ===== */
.card {
  background: var(--navy2); border: 1px solid rgba(0,198,167,0.1);
  border-radius: var(--radius); padding: 2rem;
  transition: all var(--transition);
}
.card:hover { border-color: rgba(0,198,167,0.35); transform: translateY(-3px); box-shadow: var(--shadow); }

/* ===== IRD BADGE ===== */
.ird-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, #7B4F00, var(--amber), #A86800);
  border-radius: 50%; width: 120px; height: 120px;
  justify-content: center; text-align: center;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.25), 0 0 0 8px rgba(245,158,11,0.1);
  color: var(--navy);
}
.ird-badge__label { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.ird-badge__main  { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 800; line-height: 1.1; }

/* ===== STAT PILLS ===== */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }
.stat {
  background: var(--navy2); border: 1px solid rgba(0,198,167,0.15);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.stat__number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat__label  { font-size: 0.8rem; color: var(--grey2); margin-top: 0.3rem; }

/* ===== FOOTER ===== */
.footer {
  background: #060E1A; border-top: 1px solid rgba(0,198,167,0.1);
  padding: 3rem 0 1.5rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer__brand p { font-size: 0.875rem; color: var(--grey3); margin-top: 1rem; max-width: 280px; }
.footer__col h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey2); margin-bottom: 1rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a { font-size: 0.875rem; color: var(--grey3); }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.8rem; color: var(--grey3); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1F3C 100%);
  border-bottom: 1px solid rgba(0,198,167,0.1);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { font-size: 1.15rem; max-width: 560px; }

/* ===== MOBILE NAV ===== */
.nav__mobile { display: none; }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile {
    position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
    background: var(--navy2); border-bottom: 1px solid rgba(0,198,167,0.1);
    padding: 1.5rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
  }
  .nav__mobile.open { display: block; transform: translateY(0); }
  .nav__mobile ul { list-style: none; }
  .nav__mobile li { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__mobile a { font-size: 1rem; font-weight: 600; color: var(--white); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stamp {
  0%   { opacity: 0; transform: scale(1.6) rotate(-15deg); }
  60%  { transform: scale(0.92) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.5), 0 0 0 0 rgba(245,158,11,0.25); }
  70%  { box-shadow: 0 0 0 14px rgba(245,158,11,0), 0 0 0 28px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0), 0 0 0 0 rgba(245,158,11,0); }
}
.animate-fadeup { animation: fadeUp 0.7s ease both; }
.animate-fadeup.delay-1 { animation-delay: 0.15s; }
.animate-fadeup.delay-2 { animation-delay: 0.3s; }
.animate-fadeup.delay-3 { animation-delay: 0.45s; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

/* ===== DIVIDER ===== */
.divider { height: 1px; background: rgba(0,198,167,0.12); margin: 0; }

/* ===== TABLE STYLES ===== */
.table-clean { width: 100%; border-collapse: collapse; }
.table-clean th { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey3); padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.07); }
.table-clean td { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--grey2); vertical-align: middle; }
.table-clean tr:last-child td { border-bottom: none; }

/* ===== CHECK LIST ===== */
.checklist { list-style: none; }
.checklist li { display: flex; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.9rem; color: var(--grey2); }
.checklist li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ===== NOTICE STRIP ===== */
.notice-strip {
  background: linear-gradient(90deg, rgba(245,158,11,0.12), rgba(245,158,11,0.06));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.notice-strip__icon { font-size: 1.25rem; flex-shrink: 0; }
.notice-strip p { color: #e0c060; font-size: 0.875rem; margin: 0; }
