/* ============================================================
   PQE — Pakistan Quantum Edge
   style.css — Professional, mobile-first design system
   ============================================================ */

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0a0f1e;
  --navy-mid:    #111827;
  --navy-light:  #1a2540;
  --accent:      #2563eb;
  --accent-light:#3b82f6;
  --accent-glow: rgba(37,99,235,0.15);
  --teal:        #0ea5e9;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --text:        #1e293b;
  --text-mid:    #475569;
  --text-light:  #94a3b8;
  --border:      #e2e8f0;
  --border-dark: rgba(255,255,255,0.08);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --tr:          0.2s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }

p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1.25rem;
  max-width: 1160px;
  margin: 0 auto;
}

@media (min-width: 640px)  { .nav-inner { padding: 0 2rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 2.5rem; } }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: auto;
  height: 44px;
  max-width: 120px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-dot { color: var(--accent); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--tr);
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
  background: var(--accent-glow);
}

.nav-links li a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
}

.nav-links li a.nav-cta:hover {
  background: var(--accent-light);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
}

/* Mobile nav */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-top: 1px solid var(--border);
  }

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

  .nav-links li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-links li a.nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
    padding: 0.85rem 1rem;
  }
}

/* ── Hero (homepage) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(14,165,233,0.1) 0%, transparent 60%);
}

.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;
  padding-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title .accent { color: var(--teal); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .stats-bar-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stats-bar-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stats-bar-item .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* ── Section Labels ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-label.light { color: var(--teal); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 2.5rem;
}

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

/* ── Homepage: Service Showcase (individual sections) ── */
.service-feature {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-feature:last-child { border-bottom: none; }

.service-feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .service-feature-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .service-feature-inner.reverse { direction: rtl; }
  .service-feature-inner.reverse > * { direction: ltr; }
}

.service-feature-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.service-feature-tag.teal { background: #0ea5e9; }
.service-feature-tag.green { background: #10b981; }
.service-feature-tag.purple { background: #7c3aed; }

.service-feature h2 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-feature p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.service-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
}

.service-visual-icon {
  width: 52px;
  height: 52px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}

.service-visual h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-visual p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.7;
}

.service-visual-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.service-visual-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
}

/* ── Why PQE Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 480px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.why-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ── CEO / Founder Section ── */
.ceo-section { background: var(--off-white); }

.ceo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .ceo-inner {
    grid-template-columns: 300px 1fr;
    gap: 4rem;
  }
}

.ceo-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ceo-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (min-width: 768px) {
  .ceo-photo {
    max-width: 100%;
    width: 300px;
  }
}

.ceo-photo-badge {
  margin-top: 1.25rem;
  text-align: center;
  width: 100%;
  max-width: 280px;
}

@media (min-width: 768px) {
  .ceo-photo-badge { max-width: 300px; }
}

.ceo-photo-badge .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.ceo-photo-badge .title {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.ceo-quote {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.ceo-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--teal);
  line-height: 1;
  opacity: 0.6;
}

.ceo-quote p {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  padding-top: 0.75rem;
}

.ceo-body p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.ceo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.ceo-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ── About strip ── */
.about-strip { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-inner { grid-template-columns: 1fr 380px; gap: 5rem; align-items: center; }
}

.about-text p { margin-bottom: 1rem; }

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.about-card-line {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.about-card-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 90% 30%, rgba(37,99,235,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(14,165,233,0.1) 0%, transparent 55%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero h1 .accent { color: var(--teal); }

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.75;
}

.page-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

/* ── Detail Grid (service pages) ── */
.services-detail { padding: 5rem 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .detail-grid { grid-template-columns: repeat(3, 1fr); } }

.detail-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--tr);
}

.detail-item:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  transform: translateY(-2px);
}

.detail-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.detail-item p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ── Steps Grid ── */
.how-section {
  background: var(--navy);
  padding: 5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .steps-grid.three { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.step-num-badge {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.85rem;
  opacity: 0.7;
}

.step-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.step-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ── For Who ── */
.forwho-section { padding: 5rem 0; }

.forwho-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .forwho-grid { grid-template-columns: repeat(3, 1fr); } }

.forwho-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--tr);
}

.forwho-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.forwho-icon {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.forwho-card h4 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* ── Specialties ── */
.specialties { padding: 4rem 0; background: var(--off-white); }

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.specialty-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* ── Compliance Box ── */
.compliance-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.compliance-box h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.85rem;
}

.compliance-box p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.compliance-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 0.85rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* ── Contact Page ── */
.contact-section { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 380px 1fr; gap: 4rem; }
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.contact-info > p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-detail { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.contact-item-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  transition: var(--tr);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  color: #065f46;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 220px 1fr; }
}

.footer-brand { max-width: 220px; }

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  width: auto;
  height: 40px;
  max-width: 110px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-logo-text span { color: var(--teal); }

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--tr);
  line-height: 1.5;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utility ── */
.text-accent { color: var(--accent); }
.text-teal   { color: var(--teal); }

/* ============================================================
   PQE ADDITIONS — Floating Buttons, Testimonials, About Page
   ============================================================ */

/* ── Floating Social Buttons ── */
.float-social {
  position: fixed;
  bottom: 1.75rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  flex-shrink: 0;
  pointer-events: all;
  border: none;
  outline: none;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}

.float-btn-wa { background: #25D366; }
.float-btn-li { background: #0A66C2; }
.float-btn svg { display: block; flex-shrink: 0; }

/* ── Testimonials ── */
.testimonials-section {
  padding: 4rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px)  { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: var(--tr);
}

.testi-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow), var(--shadow);
  transform: translateY(-2px);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.testi-quote {
  font-size: 0.8rem;
  line-height: 1.72;
  color: var(--text-mid);
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 0.9rem;
}

.testi-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.05rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  line-height: 1;
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid rgba(37,99,235,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--accent);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.testi-role {
  font-size: 0.66rem;
  color: var(--text-light);
  margin-top: 0.1rem;
  line-height: 1.4;
}

/* ── About Page Extras ── */
.about-hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 520px) { .about-hero-stat-grid { grid-template-columns: repeat(4,1fr); } }

.about-stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  text-align: center;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.42);
}

/* ── Values Grid ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 480px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(4,1fr); } }

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  transition: var(--tr);
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  transform: translateY(-2px);
}

.value-icon  { font-size: 1.7rem; margin-bottom: 0.75rem; line-height: 1; }
.value-title { font-size: 0.94rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.value-desc  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.72; }

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  transition: var(--tr);
}

.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.28); }

/* ── Founder social links on about page ── */
.founder-social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.founder-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--tr);
}

.founder-social-link:hover { transform: translateY(-1px); }

.founder-social-link.wa {
  color: #16a34a;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.22);
}

.founder-social-link.li {
  color: #0A66C2;
  background: rgba(10,102,194,0.08);
  border: 1px solid rgba(10,102,194,0.22);
}
