@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --white: #ffffff;
  --off-white: #f7f8fc;
  --light: #eef1f8;
  --mid: #d4daea;
  --text: #0d1321;
  --text-secondary: #4a5568;
  --accent: #0a5cff;
  --accent-dark: #003ecc;
  --accent-light: #e8efff;
  --teal: #00b4a6;
  --teal-light: #e0faf8;
  --dark-navy: #0a0f2c;
  --gradient: linear-gradient(135deg, #0a5cff 0%, #00b4a6 100%);
  --shadow-sm: 0 2px 12px rgba(10,92,255,0.08);
  --shadow-md: 0 8px 32px rgba(10,92,255,0.12);
  --shadow-lg: 0 24px 64px rgba(10,92,255,0.16);
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ─── NAV ─── */
nav#aiknowmore-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mid);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

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

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.nav-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-block;
  flex-shrink: 0;
}

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

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

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

.nav-cta {
  background: var(--gradient) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: opacity 0.2s, transform 0.2s !important;
  box-shadow: 0 4px 16px rgba(10,92,255,0.3);
}

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

/* ─── HERO ─── */
.hero-section {
  padding-top: 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  max-height: 440px;
}

.hero-badge-wrap {
  display: flex;
  justify-content: center;
  padding: 28px 0 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

/* ─── TRUSTED STRIP ─── */
.trusted-strip {
  background: var(--light);
  padding: 28px 5%;
  text-align: center;
}

.trusted-strip p {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 16px;
}

.trusted-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ─── SHARED ─── */
section.akm-section { padding: 96px 5%; }
section.akm-section.bg-offwhite { background: var(--off-white); }
section.akm-section.bg-white { background: var(--white); }
section.akm-section.bg-navy { background: var(--dark-navy); }

.akm-container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

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

.divider {
  width: 52px; height: 4px;
  background: var(--gradient);
  border-radius: 4px;
  margin-bottom: 20px;
}

.divider.center { margin-left: auto; margin-right: auto; }

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title.white { color: white; }

.section-title span.grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span.grad-light {
  background: linear-gradient(135deg, #4d9fff, #00e5d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
}

.section-sub.white { color: rgba(255,255,255,0.7); max-width: 640px; }

/* ─── INTRO (2-col) ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10,92,255,0.08);
  line-height: 0;
}

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

.stats-row {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--mid);
}

.stat { display: flex; flex-direction: column; gap: 3px; }

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.body-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.body-text strong { color: var(--text); font-weight: 600; }

/* ─── PROCESS ─── */
.process-header { margin-bottom: 56px; }

/* ─── STAGE CARDS ─── */
.stages-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.stage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light);
  transition: transform 0.3s, box-shadow 0.3s;
  line-height: 0;
}

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

.stage-card img { width: 100%; height: auto; display: block; }

.stage-card-dark {
  background: var(--dark-navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: none;
  line-height: 1.6;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stage-card-dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.stage-card-dark h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.stage-card-dark p {
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
  margin-bottom: 28px;
  font-size: 0.97rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.check-list li {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* ─── WHY US ─── */
.why-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.why-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  line-height: 0;
}

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

.why-card img { width: 100%; height: auto; display: block; }

/* ─── SERVICES ─── */
.services-header { margin-bottom: 56px; }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--light);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(10,92,255,0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 46px; height: 46px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.service-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
  font-family: 'Sora', sans-serif;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── SME LIST ─── */
.sme-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.sme-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.sme-icon.blue { background: var(--accent-light); }
.sme-icon.teal { background: var(--teal-light); }

.sme-item-text strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
}

.sme-item-text span {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

/* ─── CTA ─── */
.cta-wrap {
  position: relative;
  overflow: hidden;
}

.cta-glow-1 {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,92,255,0.28) 0%, transparent 70%);
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,166,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 44px;
  line-height: 1.72;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 28px rgba(10,92,255,0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(10,92,255,0.5);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.28);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
  color: white;
}

/* ─── FOOTER ─── */
footer#akm-footer {
  background: #060b1c;
  padding: 56px 5% 28px;
  color: rgba(255,255,255,0.45);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-email a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-email a:hover { color: white; }

.footer-copy {
  max-width: 1200px;
  margin: 22px auto 0;
  font-size: 0.8rem;
  text-align: center;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .stages-grid, .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 20px; }
  .stats-row { gap: 24px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child) { display: none; }
  .hero-banner img { max-height: 280px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
