/* =========================================
   Kempton Solutions LLC — Main Stylesheet
   ========================================= */

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

:root {
  --navy:   #1B2A4A;
  --navy-dark: #111d33;
  --gold:   #C5A028;
  --gold-light: #d4b43a;
  --light:  #F4F6FA;
  --white:  #ffffff;
  --gray:   #6b7280;
  --gray-light: #e5e7eb;
  --text:   #1f2937;
  --font-sans: 'Inter', 'Segoe UI', sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── Utility ────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

section {
  padding: 96px 0;
}

/* ── Navigation ─────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
  padding: 0;
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand svg {
  display: block;
  transition: opacity var(--transition);
}

.nav-brand:hover svg {
  opacity: 0.85;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy-dark) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ───────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(197,160,40,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(197,160,40,0.05) 0%, transparent 60%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,160,40,0.15);
  border: 1px solid rgba(197,160,40,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 580px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── About ──────────────────────────────── */
#about {
  background: var(--light);
}

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

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.highlight-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

/* ── Services ───────────────────────────── */
#services {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(197,160,40,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── Experience ─────────────────────────── */
#experience {
  background: var(--navy-dark);
  padding: 96px 0;
}

#experience .section-title {
  color: var(--white);
}

#experience .section-subtitle {
  color: rgba(255,255,255,0.55);
}

.experience-header {
  margin-bottom: 64px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: rgba(197,160,40,0.25);
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.timeline-dot svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 32px;
  transition: background var(--transition);
}

.timeline-content:hover {
  background: rgba(255,255,255,0.07);
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.timeline-company {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.timeline-period {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(197,160,40,0.12);
  border: 1px solid rgba(197,160,40,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.timeline-role {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 16px;
}

.timeline-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-bullets li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.timeline-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Skills & Publications ──────────────── */
#skills {
  background: var(--light);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.skills-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.pub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pub-list li {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.pub-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.pub-list a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pub-list a:hover {
  color: var(--gold);
}

/* ── Contact ─────────────────────────────── */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(197,160,40,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.contact-item-value:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--light);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font-sans);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,40,0.12);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
}

.btn-submit:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

/* ── Footer ─────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand span {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  width: 100%;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}

/* ── Hero Pillars ───────────────────────── */
.hero-pillars {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.hero-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-pillar-icon {
  width: 36px;
  height: 36px;
  background: rgba(197,160,40,0.15);
  border: 1px solid rgba(197,160,40,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-pillar-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-pillar-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  line-height: 1.3;
}

/* ── Bio Section ────────────────────────── */
#team {
  background: var(--white);
  padding: 96px 0;
}

.team-header {
  margin-bottom: 56px;
}

.bio-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--light);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 48px;
}

.bio-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bio-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-initials {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.bio-photo-note {
  font-size: 0.72rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}

.bio-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.bio-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  transition: border-color var(--transition);
}

.bio-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.bio-social svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bio-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.bio-title-line {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.bio-content p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.bio-content p:last-child {
  margin-bottom: 0;
}

.bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.bio-cred {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 5px 12px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .bio-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 20px;
  }
  .bio-photo-wrap {
    flex-direction: row;
    align-items: center;
  }
  .bio-photo {
    width: 100px;
    height: 100px;
  }
  .bio-initials {
    font-size: 1.8rem;
  }
}

/* ── Cash Flow Feature Section ──────────── */
#cashflow {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

#cashflow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 90% 50%, rgba(197,160,40,0.07) 0%, transparent 70%);
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cf-intro .section-title { color: var(--white); }
.cf-intro .section-subtitle { color: rgba(255,255,255,0.6); }
.cf-intro .section-label { margin-bottom: 12px; }

.cf-intro p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-top: 20px;
  font-size: 0.975rem;
}

.cf-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: background var(--transition);
}

.cf-pillar:hover {
  background: rgba(255,255,255,0.08);
}

.cf-pillar h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.cf-pillar p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── Verification Agent Section ─────────── */
#verification {
  background: var(--white);
  padding: 96px 0;
}

.verify-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.verify-intro p {
  color: var(--gray);
  line-height: 1.8;
  margin-top: 20px;
  font-size: 0.975rem;
  margin-bottom: 16px;
}

.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,160,40,0.1);
  border: 1px solid rgba(197,160,40,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.verify-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verify-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow var(--transition);
}

.verify-card:hover {
  box-shadow: var(--shadow-md);
}

.verify-card-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verify-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verify-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.verify-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Qualifications ─────────────────────── */
#qualifications {
  background: var(--light);
  padding: 96px 0;
}

.qual-header {
  margin-bottom: 56px;
}

.qual-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.qual-domain {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.qual-domain h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.qual-domain ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.qual-domain ul li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.qual-domain ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.qual-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.qual-credential {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
}

.qual-credential h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.qual-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qual-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  background: var(--light);
  border: 1px solid var(--gray-light);
  padding: 5px 12px;
  border-radius: 100px;
}

.qual-tag.highlight {
  background: rgba(197,160,40,0.12);
  border-color: rgba(197,160,40,0.35);
  color: #8a6f10;
  font-weight: 600;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .skills-grid,
  .cf-grid,
  .verify-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid,
  .qual-top-grid,
  .qual-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }

  .hero-stats {
    gap: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
