/* ============================================
   Azurient — Corporate Stylesheet
   Modern corporate blue / azure palette
   ============================================ */

:root {
  --azure: #0e7cc2;
  --azure-dark: #0b5fa5;
  --navy: #0a2540;
  --navy-light: #12395e;
  --sky: #e8f3fb;
  --sky-mid: #cfe6f6;
  --white: #ffffff;
  --gray-bg: #f6f9fc;
  --gray-border: #e3eaf1;
  --text: #33475b;
  --text-light: #5e7387;
  --gold: #f2b632;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.14);
  --max-w: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  font-size: 16px;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--azure); text-decoration: none; }
a:hover { color: var(--azure-dark); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--azure);
  margin-bottom: 12px;
}

.lead { font-size: 1.15rem; color: var(--text-light); }

.section { padding: 88px 0; }
.section.alt { background: var(--gray-bg); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; color: var(--text-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--azure);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--azure-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--azure);
  color: var(--azure);
  background: transparent;
}
.btn-outline:hover {
  background: var(--sky);
  color: var(--azure-dark);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--azure-dark); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo img, .logo svg { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--azure);
  border-bottom-color: var(--azure);
}

.nav-links .nav-cta {
  background: var(--azure);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  border-bottom: none;
}
.nav-links .nav-cta:hover { background: var(--azure-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, var(--azure-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(14, 124, 194, 0.35), transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 104px;
  position: relative;
  z-index: 1;
}

.hero h1 { color: var(--white); margin: 18px 0 20px; }

.hero p.lead { color: rgba(255, 255, 255, 0.85); margin-bottom: 34px; }

.hero .eyebrow { color: #7cc4ee; }

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.badge-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art { position: relative; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 44px 0;
  text-align: center;
}

.stat h3 { font-size: 2.2rem; color: var(--azure); }
.stat p { color: var(--text-light); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card .icon svg { width: 28px; height: 28px; }

.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-light); font-size: 0.96rem; }
.card .card-link { display: inline-block; margin-top: 18px; font-weight: 600; font-size: 0.92rem; }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse > :first-child { order: 2; }

.check-list { list-style: none; margin-top: 24px; }

.check-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 14px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--azure) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Certification band ---------- */
.cert-band {
  background: linear-gradient(120deg, var(--navy), var(--azure-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cert-band h2 { color: var(--white); margin-bottom: 12px; }
.cert-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; }

.cert-seals { display: flex; gap: 20px; }

.seal {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.seal small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3px;
  max-width: 90px;
}

/* ---------- Certification detail cards ---------- */
.cert-detail {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
  align-items: start;
}

.cert-detail .seal {
  background: var(--sky);
  border-color: var(--azure);
  color: var(--azure-dark);
  width: 110px;
  height: 110px;
}
.cert-detail .seal small { color: var(--text-light); }

.cert-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.cert-meta div {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.cert-meta strong { display: block; color: var(--navy); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }

.placeholder { color: var(--azure); font-style: italic; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-mid);
  display: block;
  margin-bottom: 10px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); }

/* ---------- Leadership ---------- */
.leader-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.leader-photo {
  background: linear-gradient(160deg, var(--sky), var(--sky-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.leader-photo svg { width: 130px; height: 130px; }

.leader-info { padding: 40px 40px 40px 0; }
.leader-info .role { color: var(--azure); font-weight: 600; margin: 4px 0 16px; }
.leader-info p { color: var(--text-light); }

/* ---------- Timeline ---------- */
.timeline { list-style: none; position: relative; padding-left: 32px; }

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--sky-mid);
}

.timeline li { position: relative; margin-bottom: 28px; }

.timeline li::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--azure);
  border: 3px solid var(--sky);
}

.timeline strong { color: var(--navy); display: block; }
.timeline span { color: var(--text-light); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.4rem; }

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

.contact-item .ci-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item .ci-icon svg { width: 20px; height: 20px; }

.contact-item strong { display: block; color: var(--white); font-size: 0.92rem; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }
.contact-item a:hover { color: var(--white); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-bg);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--azure);
  background: var(--white);
}

.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 14px; }

/* ---------- CTA section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--azure-dark), var(--azure));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
  font-size: 0.93rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.75); }
.footer-grid a:hover { color: var(--white); }

.footer-about img, .footer-about svg { height: 38px; width: auto; margin-bottom: 18px; }
.footer-about p { max-width: 300px; }

.footer-certs { display: flex; gap: 10px; margin-top: 18px; }

.footer-certs span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 76px 0;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-top: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.82); max-width: 640px; margin: 18px auto 0; }
.page-hero .eyebrow { color: #7cc4ee; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .hero-art { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cert-band { grid-template-columns: 1fr; padding: 40px 28px; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-info { padding: 0 32px 36px; }
  .leader-photo { min-height: 220px; }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 0; border-bottom: 1px solid var(--gray-border); }
  .nav-links .nav-cta { text-align: center; margin-top: 14px; border-radius: 8px; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .steps, .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cert-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 64px 0 72px; }
}
