:root {
  --ak-blue: #2563eb;
  --ak-blue-dark: #1d4ed8;
  --ak-blue-light: #eff6ff;
  --ak-blue-muted: #3b82f6;
  --ak-ink: #0f172a;
  --ak-muted: #64748b;
  --ak-border: #e2e8f0;
  --ak-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --ak-shadow-lg: 0 20px 50px rgba(37, 99, 235, 0.15);
}

html { scroll-behavior: smooth; }

body.ak-page {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ak-ink);
  background: #fff;
}

.ak-nav {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ak-border);
  padding: 0.65rem 0;
}

.ak-nav .navbar-brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ak-ink) !important;
}

.ak-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--ak-blue-muted), var(--ak-blue-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.ak-nav .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: #475569 !important;
  padding: 0.45rem 0.85rem !important;
  border-radius: 0.5rem;
}

.ak-nav .nav-link:hover {
  color: var(--ak-blue-dark) !important;
  background: var(--ak-blue-light);
}

.ak-nav .product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ak-blue-dark);
  background: var(--ak-blue-light);
  border: 1px solid #bfdbfe;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-left: 0.5rem;
}

.ak-nav .navbar-toggler {
  border-color: var(--ak-border);
  padding: 0.35rem 0.55rem;
}

.ak-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.btn-ak-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.45rem;
  font-size: 0.925rem;
  font-weight: 700;
  color: #fff;
  background: var(--ak-blue);
  border: none;
  border-radius: 0.65rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.btn-ak-primary:hover {
  background: var(--ak-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ak-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.45rem;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--ak-blue-dark);
  background: #fff;
  border: 2px solid var(--ak-blue);
  border-radius: 0.65rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-ak-outline:hover {
  background: var(--ak-blue-light);
  color: var(--ak-blue-dark);
}

.btn-ak-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
}

.btn-wa-ak {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.45rem;
  font-size: 0.925rem;
  font-weight: 700;
  color: #fff !important;
  background: #25d366;
  border-radius: 0.65rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wa-ak:hover { color: #fff !important; filter: brightness(1.05); }

.btn-wa-ak.btn-ak-sm { padding: 0.45rem 0.9rem; font-size: 0.8125rem; }

.ak-hero {
  margin-top: 4rem;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100%);
  overflow: hidden;
  position: relative;
}

.ak-hero::before,
.ak-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ak-hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

.ak-hero::after {
  width: 320px;
  height: 320px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.ak-hero .container { position: relative; z-index: 1; }

@media (min-width: 992px) {
  .ak-hero { margin-top: 4.25rem; padding: 4rem 0 3rem; }
}

.ak-hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .ak-hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.ak-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ak-blue-dark);
  background: var(--ak-blue-light);
  border: 1px solid #bfdbfe;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.ak-hero-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ak-muted);
  margin-bottom: 0.75rem;
}

.ak-hero-powered strong {
  color: var(--ak-blue-dark);
}

.ak-hero-title {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ak-ink);
  margin-bottom: 1rem;
}

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

.ak-hero-desc {
  font-size: 1.05rem;
  color: var(--ak-muted);
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.ak-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.ak-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e40af;
  background: #fff;
  border: 1px solid #bfdbfe;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.ak-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.ak-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: var(--ak-shadow-lg);
  border: 1px solid var(--ak-border);
}

.ak-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 0.5rem;
}

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

.ak-stat {
  background: #fff;
  border: 1px solid var(--ak-border);
  border-radius: 0.75rem;
  padding: 0.85rem 0.75rem;
  text-align: center;
  box-shadow: var(--ak-shadow);
}

.ak-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ak-blue-dark);
}

.ak-stat small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ak-muted);
  line-height: 1.3;
}

.ak-trust-bar {
  padding: 1rem 0;
  background: #fff;
  border-top: 1px solid var(--ak-border);
  border-bottom: 1px solid var(--ak-border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--ak-muted);
  font-weight: 500;
}

.ak-trust-bar strong {
  color: var(--ak-blue-dark);
  font-weight: 700;
}

.ak-section { padding: 4rem 0; }

.ak-section.alt { background: #f8fafc; }

.ak-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.ak-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ak-blue);
  margin-bottom: 0.5rem;
}

.ak-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.ak-section-head p {
  color: var(--ak-muted);
  line-height: 1.6;
  margin: 0;
}

.ak-module-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .ak-module-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.ak-module-card {
  background: #fff;
  border: 1px solid var(--ak-border);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.ak-module-card:hover {
  border-color: #bfdbfe;
  box-shadow: var(--ak-shadow-lg);
  transform: translateY(-3px);
}

.ak-module-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--ak-blue-light);
  color: var(--ak-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.ak-module-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.ak-module-card p {
  font-size: 0.875rem;
  color: var(--ak-muted);
  line-height: 1.55;
  margin: 0;
}

.ak-feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .ak-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.ak-feature-card {
  background: #fff;
  border: 1px solid var(--ak-border);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ak-feature-card:hover {
  border-color: #bfdbfe;
  box-shadow: var(--ak-shadow);
}

.ak-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #eff6ff, #fff);
  border: 1px solid #bfdbfe;
  color: var(--ak-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.ak-feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.ak-feature-card p {
  font-size: 0.875rem;
  color: var(--ak-muted);
  line-height: 1.55;
  margin: 0;
}

.ak-highlight {
  margin-top: 2.5rem;
  border-radius: 1.25rem;
  padding: 2.5rem 1.75rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.22);
}

.ak-highlight h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.ak-highlight p {
  opacity: 0.95;
  line-height: 1.65;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  font-size: 0.975rem;
}

.ak-highlight .btn-ak-primary {
  background: #fff;
  color: var(--ak-blue-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ak-highlight .btn-ak-primary:hover {
  background: var(--ak-blue-light);
  color: var(--ak-blue-dark);
}

.ak-cta-band {
  padding: 3.5rem 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
}

.ak-cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.ak-cta-band p {
  opacity: 0.95;
  max-width: 32rem;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.ak-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.ak-cta-band .btn-ak-primary {
  background: #fff;
  color: var(--ak-blue-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ak-cta-band .btn-ak-primary:hover {
  background: var(--ak-blue-light);
  color: var(--ak-blue-dark);
}

.ak-cta-band .btn-ak-outline-light {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.ak-cta-band .btn-ak-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: #fff;
}

.ak-checklist {
  background: #fff;
  border: 1px solid var(--ak-border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--ak-shadow);
}

.ak-checklist h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ak-muted);
  margin-bottom: 1rem;
}

.ak-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ak-checklist li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #334155;
}

.ak-checklist li i {
  color: var(--ak-blue);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ak-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.ak-footer a {
  color: #93c5fd;
  text-decoration: none;
}

.ak-footer a:hover { color: #fff; }
