/* === ACCENIFY IAM — MAIN STYLESHEET === */
/* Brand: Deep Purple + Electric Blue on near-white */

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

:root {
  --purple-900: #1a0533;
  --purple-800: #2d0a52;
  --purple-700: #4a1470;
  --purple-600: #6b21a8;
  --purple-500: #9333ea;
  --purple-400: #a855f7;
  --purple-200: #e9d5ff;
  --purple-100: #f3e8ff;
  --purple-50:  #faf5ff;

  --blue-900:  #0c1a3d;
  --blue-800:  #1e3a8a;
  --blue-700:  #1d4ed8;
  --blue-600:  #2563eb;
  --blue-500:  #3b82f6;
  --blue-400:  #60a5fa;
  --blue-200:  #bfdbfe;
  --blue-100:  #dbeafe;

  --text-primary:   #0f0a1a;
  --text-secondary: #4a4060;
  --text-muted:     #8b7da0;
  --surface:        #ffffff;
  --surface-alt:    #faf8fc;
  --surface-purple: #f3e8ff;
  --border:         #e5dff0;
  --border-strong:  #c4b5d4;

  --gradient-main: linear-gradient(135deg, #6b21a8 0%, #2563eb 100%);
  --gradient-soft: linear-gradient(135deg, #f3e8ff 0%, #dbeafe 100%);

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 3px rgba(107,33,168,0.08);
  --shadow-md:  0 4px 16px rgba(107,33,168,0.12);
  --shadow-lg:  0 8px 32px rgba(107,33,168,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAVIGATION === */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(243,232,255,0.75) 0%, rgba(219,234,254,0.55) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,181,212,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gradient-main);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.logo-iam {
  color: var(--purple-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--purple-600); }

.btn-nav {
  background: var(--gradient-main) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-nav:hover { opacity: 0.9 !important; transform: translateY(-1px); }

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1rem 24px;
  gap: 1rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--gradient-main);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary.btn-light {
  background: white;
  color: var(--purple-700);
  box-shadow: none;
}

.btn-primary.btn-light:hover { background: var(--purple-50); }

.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--purple-600);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid var(--purple-400);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  background: var(--purple-100);
  color: var(--purple-700);
}

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-600);
  background: var(--purple-100);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--surface);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,33,168,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,33,168,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--blue-200);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple-700);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* === SERVICES STRIP === */
.services-strip {
  padding: 80px 0;
  background: var(--surface-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--purple-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--purple-700);
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
}

.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-600);
  transition: color 0.2s;
}

.service-card:hover .card-link { color: var(--blue-600); }

/* === WHY SECTION === */
.why-section {
  padding: 80px 0;
  background: white;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) { .why-inner { grid-template-columns: 1fr; gap: 2rem; } }

.why-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.check-icon {
  color: var(--purple-600);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.platform-pill {
  background: var(--gradient-soft);
  border: 1px solid var(--purple-200);
  color: var(--purple-800);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
}

.platform-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* === CASES PREVIEW === */
.cases-preview {
  padding: 80px 0;
  background: var(--surface-alt);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.case-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.case-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.case-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.case-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex: 1;
}

.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-partner { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.case-outcome {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 2px 10px;
  border-radius: 10px;
}

/* === CASE STUDIES PAGE === */
.cases-full-section { padding: 60px 0 80px; }

.cases-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: white;
}

.cases-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.case-card-full {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.case-card-full:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.case-outcome-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 2px 10px;
  border-radius: 10px;
}

.case-services { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }

.service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 2px 10px;
  border-radius: 10px;
}

.no-cases { color: var(--text-muted); font-style: italic; padding: 2rem 0; }

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,10,26,0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 680px;
  width: 100%;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-large { max-width: 820px; }

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background 0.2s;
}

.modal-close:hover { background: var(--surface-purple); }

.modal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.modal-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.modal-section { margin-bottom: 1.5rem; }

.modal-section h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-600);
  margin-bottom: 0.5rem;
}

.modal-section p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

.outcome-list {
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* === CTA BAND === */
.cta-band {
  padding: 80px 0;
  background: var(--gradient-main);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* === PAGE HERO === */
.page-hero {
  padding: 80px 0 60px;
  background: white;
  border-bottom: 1px solid var(--border);
}

.page-hero .section-label { margin-bottom: 0.75rem; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* === SERVICES DETAIL === */
.service-detail { padding: 80px 0; background: white; }
.service-detail.alt { background: var(--surface-alt); }

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

@media (max-width: 768px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.alt .service-detail-visual { order: -1; }
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple-400);
  margin-bottom: 0.5rem;
}

.service-detail-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-detail-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple-500);
  font-weight: 700;
}

/* === SERVICE VISUALS === */
.service-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 2rem;
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--purple-200);
  width: 100%;
  max-width: 320px;
}

.diagram-node {
  background: white;
  border: 1.5px solid var(--purple-300, #c084fc);
  color: var(--purple-800);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 160px;
  box-shadow: var(--shadow-sm);
}

.diagram-node.accent {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
}

.diagram-node.top { font-size: 0.88rem; }
.diagram-node.mid { font-size: 0.88rem; min-width: 180px; }
.diagram-node.small { min-width: 0; padding: 8px 14px; }

.diagram-arrow { color: var(--purple-500); font-size: 1.2rem; }

.diagram-row { display: flex; gap: 0.5rem; }

/* ZT rings */
.zt-rings {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zt-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 2px solid;
}

.zt-ring span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 12px;
  transform: translateY(-50%);
}

.zt-ring.outer { width: 260px; height: 260px; border-color: var(--blue-300, #93c5fd); background: rgba(219,234,254,0.3); }
.zt-ring.outer span { color: var(--blue-700); position: absolute; top: 18%; }
.zt-ring.mid { width: 180px; height: 180px; border-color: var(--purple-400); background: rgba(243,232,255,0.5); }
.zt-ring.mid span { color: var(--purple-700); position: absolute; top: 18%; }
.zt-ring.inner { width: 100px; height: 100px; background: var(--gradient-main); border-color: transparent; justify-content: center; }
.zt-ring.inner span { color: white; font-size: 0.7rem; padding: 0; transform: none; text-align: center; }

/* Roadmap */
.roadmap-steps {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2rem;
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--purple-200);
}

.roadmap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rs-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-text { font-size: 0.78rem; font-weight: 600; color: var(--purple-800); }
.rs-line { width: 40px; height: 2px; background: var(--purple-300, #c084fc); flex-shrink: 0; }

/* MFA flow */
.mfa-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--purple-200);
}

.mfa-step {
  background: white;
  border: 1.5px solid var(--purple-300, #c084fc);
  color: var(--purple-800);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-md);
}

.mfa-step.accent { background: var(--gradient-main); color: white; border-color: transparent; }
.mfa-step.success { background: #d1fae5; border-color: #6ee7b7; color: #065f46; }
.mfa-arrow { color: var(--purple-400); font-weight: 600; }

/* Compliance badges */
.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding: 2.5rem;
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--purple-200);
}

.comp-badge {
  background: white;
  border: 1.5px solid var(--purple-300, #c084fc);
  color: var(--purple-800);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md);
}

/* === ABOUT PAGE === */
.about-mission { padding: 80px 0; }
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) { .about-mission-inner { grid-template-columns: 1fr; } }

.mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.mission-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

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

.value-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.value-card p { font-size: 0.88rem; color: var(--text-secondary); }

.certifications-section {
  padding: 80px 0;
  background: var(--surface-alt);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.cert-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

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

.cert-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-700);
  margin-bottom: 0.5rem;
}

.cert-card p { font-size: 0.82rem; color: var(--text-muted); }

/* === CONTACT PAGE === */
.contact-section { padding: 60px 0 80px; }

.contact-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }

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

.contact-steps { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-step strong { font-weight: 600; color: var(--text-primary); display: block; margin-bottom: 2px; }
.contact-step p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

.contact-details {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-detail-item { display: flex; flex-direction: column; }
.cd-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail-item a { color: var(--purple-600); text-decoration: none; font-weight: 500; }
.contact-detail-item a:hover { text-decoration: underline; }

.contact-form-wrapper {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

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

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--surface-alt);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(147,51,234,0.1);
  background: white;
}

textarea { resize: vertical; line-height: 1.6; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b21a8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-checkbox { margin-top: 0.5rem; }

.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--purple-600);
}

/* === THANK YOU === */
.thankyou-section { padding: 120px 0; text-align: center; }
.thankyou-inner { max-width: 500px; margin: 0 auto; }

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thankyou-inner h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.thankyou-inner p { color: var(--text-secondary); font-size: 1.05rem; }

/* === FOOTER === */
.site-footer {
  background: var(--purple-900);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo .logo-text { color: white; }
.footer-brand .logo .logo-iam { color: var(--purple-400); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); max-width: 300px; line-height: 1.65; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 600px) { .footer-links { grid-template-columns: 1fr 1fr; } }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .hero-cta { flex-direction: column; }
}

/* === PASSWORDLESS === */
.pl-diagram {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 2rem;
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--purple-200);
  width: 100%;
}
.pl-old, .pl-new { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pl-old-label, .pl-new-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.pl-old-label { color: var(--text-muted); }
.pl-new-label { color: var(--purple-600); }
.pl-step { background: white; border: 1.5px solid var(--border); color: var(--text-secondary); font-size: 0.8rem; font-weight: 600; padding: 8px 12px; border-radius: var(--radius-md); text-align: center; }
.pl-step.strike { text-decoration: line-through; opacity: 0.5; }
.pl-step.accent { background: linear-gradient(135deg,#6b21a8,#2563eb); color: white; border-color: transparent; }
.pl-bad { font-size: 0.75rem; font-weight: 700; color: #dc2626; background: #fef2f2; border: 1px solid #fecaca; padding: 5px 10px; border-radius: var(--radius-md); text-align: center; margin-top: 4px; }
.pl-good { font-size: 0.75rem; font-weight: 700; color: #065f46; background: #d1fae5; border: 1px solid #6ee7b7; padding: 5px 10px; border-radius: var(--radius-md); text-align: center; margin-top: 4px; }
.pl-arrow-mid { font-size: 1.4rem; color: var(--purple-400); font-weight: 700; flex-shrink: 0; }

.passwordless-stats { padding: 48px 0; background: var(--purple-900); }
.pl-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pl-stat-card { text-align: center; padding: 1.5rem 1rem; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); }
.pl-stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: #c084fc; line-height: 1; margin-bottom: 0.5rem; }
.pl-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.passwordless-teaser { padding: 80px 0; background: var(--surface); }
.passwordless-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pl-teaser-pills { display: flex; flex-direction: column; gap: 0.75rem; }
.pl-teaser-pill { display: flex; align-items: center; gap: 1rem; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem 1.25rem; transition: border-color 0.2s, box-shadow 0.2s; }
.pl-teaser-pill:hover { border-color: var(--purple-400); box-shadow: 0 4px 16px rgba(107,33,168,0.12); }
.pl-pill-icon { width: 40px; height: 40px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.pl-pill-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.pl-pill-text span { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .pl-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-diagram { flex-direction: column; }
  .pl-arrow-mid { transform: rotate(90deg); }
  .passwordless-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
}
