/*
 * AiStarterKit Landing — ported to Gradynex (vanilla CSS, framework-agnostic)
 * Recreates the Next.js + Tailwind aistarterkit landing look without Tailwind.
 * All classes are prefixed with `ak-` to avoid clashing with Bootstrap.
 */

:root {
  --ak-primary-50: #f4f3ff;
  --ak-primary-100: #ebe9fe;
  --ak-primary-200: #d9d6fe;
  --ak-primary-300: #bdb4fe;
  --ak-primary-400: #9b8afb;
  --ak-primary-500: #7a5af8;
  --ak-primary-600: #6938ef;
  --ak-primary-700: #5925dc;
  --ak-primary-800: #4a1fb8;

  --ak-gray-50: #f9fafb;
  --ak-gray-100: #f3f4f6;
  --ak-gray-200: #e5e7eb;
  --ak-gray-300: #d1d5db;
  --ak-gray-400: #9ca3af;
  --ak-gray-500: #6b7280;
  --ak-gray-600: #4b5563;
  --ak-gray-700: #374151;
  --ak-gray-800: #1f2937;
  --ak-gray-900: #111827;

  --ak-red-50: #fef2f2;
  --ak-red-100: #fee2e2;
  --ak-red-200: #fecaca;
  --ak-red-600: #dc2626;

  --ak-dark-primary: #171f2e;
  --ak-dark-secondary: #1a2231;

  --ak-shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  --ak-shadow-sm: 0 8px 20px 0 rgba(0, 0, 0, 0.08);

  --ak-gradient-btn: linear-gradient(97deg, #725cff 0%, #b5b1ff 140.21%);
}

/* ---------------------------------------------------------------------------
 * Base / wrapper
 * ------------------------------------------------------------------------- */
.ak-landing {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ak-gray-700);
  background: #fff;
}

.ak-landing *,
.ak-landing *::before,
.ak-landing *::after {
  box-sizing: border-box;
}

.ak-wrapper {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .ak-wrapper {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

.ak-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .ak-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.ak-heading {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.ak-heading h2 {
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--ak-gray-800);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  line-height: 1.2;
}

.ak-heading p {
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--ak-gray-500);
}

.ak-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background: var(--ak-primary-50);
  color: var(--ak-primary-600);
}

/* Buttons */
.ak-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ak-btn-primary {
  background: var(--ak-primary-500);
  color: #fff;
}

.ak-btn-primary:hover {
  background: var(--ak-primary-600);
  color: #fff;
}

.ak-btn-gradient {
  background-image: var(--ak-gradient-btn);
  color: #fff;
  background-size: 200% auto;
  background-position: 0% center;
}

.ak-btn-gradient:hover {
  background-position: 100% center;
  color: #fff;
}

.ak-btn-outline {
  background: #fff;
  border-color: var(--ak-gray-200);
  color: var(--ak-gray-700);
}

.ak-btn-outline:hover {
  color: var(--ak-primary-500);
}

/* ---------------------------------------------------------------------------
 * Navbar
 * ------------------------------------------------------------------------- */
.ak-navbar {
  background: #fff;
  border-bottom: 1px solid var(--ak-gray-100);
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .ak-navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.ak-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .ak-navbar-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ak-navbar-inner {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .ak-navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .ak-brand {
    justify-self: start;
  }

  .ak-nav-desktop {
    justify-self: center;
  }

  .ak-navbar-actions {
    justify-self: end;
  }
}

.ak-brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  text-decoration: none;
}

.ak-brand img {
  height: 30px;
  width: auto;
}

/* Brand logo light/dark switching */
.ak-brand-logo-dark {
  display: none;
}

html[data-bs-theme="dark"] .ak-brand-logo-light {
  display: none;
}

html[data-bs-theme="dark"] .ak-brand-logo-dark {
  display: inline-block;
}

.ak-brand .ak-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ak-gray-800);
  line-height: 1;
  margin-bottom: 0.125rem;
}

.ak-nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .ak-nav-desktop {
    display: inline-flex;
    align-items: center;
    background: var(--ak-gray-50);
    border-radius: 9999px;
    padding: 0.25rem;
  }
}

.ak-nav-desktop a {
  color: var(--ak-gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ak-nav-desktop a:hover {
  color: var(--ak-primary-500);
}

.ak-nav-desktop a.active {
  background: #fff;
  color: var(--ak-gray-800);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.ak-navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ak-nav-signin {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ak-gray-700);
  text-decoration: none;
}

.ak-nav-signin:hover {
  color: var(--ak-primary-500);
}

@media (min-width: 1024px) {
  .ak-nav-signin {
    display: inline-block;
  }
}

.ak-nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .ak-nav-cta {
    display: inline-flex;
  }
}

.ak-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  border-radius: 0.5rem;
  color: var(--ak-gray-500);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .ak-nav-toggle {
    display: none;
  }
}

.ak-nav-mobile {
  display: none;
  border-top: 1px solid var(--ak-gray-100);
  padding: 1rem;
}

.ak-nav-mobile.open {
  display: block;
}

.ak-nav-mobile a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ak-gray-500);
  text-decoration: none;
}

.ak-nav-mobile a:hover {
  background: var(--ak-gray-100);
}

.ak-nav-mobile .ak-nav-mobile-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---------------------------------------------------------------------------
 * Navbar dropdown (desktop)
 * ------------------------------------------------------------------------- */
.ak-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ak-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ak-gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.ak-nav-dropdown-trigger:hover {
  color: var(--ak-primary-500);
}

.ak-nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.ak-nav-dropdown:hover .ak-nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.ak-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: #fff;
  border: 1px solid var(--ak-gray-200);
  border-radius: 1rem;
  box-shadow: var(--ak-shadow-lg);
  padding: 0.5rem;
  min-width: 200px;
  z-index: 100;
}

.ak-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
}

.ak-nav-dropdown:hover .ak-nav-dropdown-menu {
  display: block;
}

.ak-nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ak-gray-600);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.15s ease;
}

.ak-nav-dropdown-menu a:hover {
  background: var(--ak-gray-50);
  color: var(--ak-primary-500);
}

/* Product dropdown with icons (matches template w-[266px] right-aligned) */
.ak-nav-products-menu {
  left: auto;
  right: 0;
  transform: none;
  min-width: 266px;
  padding: 0.5rem;
}

.ak-nav-product-link {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem !important;
}

.ak-nav-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--ak-gray-100);
  flex-shrink: 0;
}

.ak-nav-product-icon img {
  width: 1.5rem;
  height: 1.5rem;
}

/* Navbar icon button (theme / language switcher) */
.ak-nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  color: var(--ak-gray-500);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.ak-nav-icon-btn:hover {
  color: var(--ak-primary-500);
  background: var(--ak-gray-50);
}

/* ---------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------- */
.ak-hero {
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.ak-hero-inner {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}

.ak-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 4rem;
}

.ak-hero-subheading {
  border-radius: 9999px;
  margin: 0 auto 1.5rem;
  max-width: max-content;
  background: linear-gradient(to right, rgba(255, 88, 213, 0.5), rgba(78, 110, 255, 0.5));
  padding: 2px;
}

.ak-hero-subheading > span {
  background: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  color: var(--ak-gray-700);
}

.ak-hero-subheading .ak-stars {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.ak-hero h1 {
  color: var(--ak-gray-700);
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 50px);
  line-height: 1.15;
  max-width: 700px;
}

.ak-hero-sub {
  max-width: 537px;
  margin: 0 auto;
  color: var(--ak-gray-500);
  font-size: 1rem;
}

.ak-hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 30;
}

@media (min-width: 640px) {
  .ak-hero-actions {
    flex-direction: row;
  }
}

.ak-video-btn {
  border-radius: 9999px;
  display: inline-flex;
  height: 3rem;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  border: 1px solid var(--ak-gray-100);
  background: #fff;
  padding: 0.375rem 1.5rem 0.375rem 0.375rem;
  color: var(--ak-gray-700);
  cursor: pointer;
  text-decoration: none;
}

.ak-video-btn .ak-video-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-image: var(--ak-gradient-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ak-hero-figure {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.ak-hero-figure-frame {
  padding: 0.75rem;
  position: relative;
  z-index: 30;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
  .ak-hero-figure-frame {
    padding: 18px;
  }
}

.ak-hero-figure-frame img {
  width: 100%;
  border-radius: 1rem;
  display: block;
}

/* Video Modal */
.ak-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ak-video-modal.open {
  display: flex;
}

.ak-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.ak-video-modal-content {
  position: relative;
  width: min(100%, 900px);
  background: #000;
  border-radius: 1rem;
  box-shadow: var(--ak-shadow-lg);
  z-index: 10;
}

.ak-video-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.ak-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 1rem;
}

.ak-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ak-hero-glow {
  pointer-events: none;
  width: 100%;
  height: 41.875rem;
  position: absolute;
  z-index: 10;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(122, 90, 248, 0) 0%, #7a5af8 100%);
}

.ak-hero-shape {
  position: absolute;
  z-index: 5;
}

@media (max-width: 1100px) {
  .ak-hero-shape {
    display: none;
  }
}

.ak-hero-logos {
  position: relative;
  z-index: 30;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  max-width: 1016px;
  margin: 0 auto;
}

.ak-hero-logos p {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.ak-hero-logos .ak-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .ak-hero-logos .ak-logos {
    gap: 3.5rem;
  }
}

.ak-hero-logos .ak-logos img {
  height: 32px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.ak-hero-logos .ak-logos img:hover {
  opacity: 1;
}

/* Floating shapes animation */
@keyframes ak-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes ak-float-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
@keyframes ak-float-xy {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}
@keyframes ak-float-rev {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.ak-floating-1 { animation: ak-float-y 3s ease-in-out infinite; }
.ak-floating-2 { animation: ak-float-x 4s ease-in-out infinite; }
.ak-floating-3 { animation: ak-float-xy 5s ease-in-out infinite; }
.ak-floating-4 { animation: ak-float-rev 6s ease-in-out infinite; }

/* ---------------------------------------------------------------------------
 * Tools tab (steps)
 * ------------------------------------------------------------------------- */
.ak-tabs {
  max-width: 1008px;
  margin: 0 auto;
}

.ak-tab-nav-scroll {
  overflow-x: auto;
  margin: 0 auto;
  max-width: max-content;
}

.ak-tab-nav {
  display: flex;
  gap: 0.5rem;
  min-width: max-content;
  border-radius: 9999px;
  background: var(--ak-gray-100);
  padding: 0.25rem;
}

.ak-tab-btn {
  display: inline-flex;
  align-items: center;
  height: 3rem;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 0;
  background: transparent;
  color: var(--ak-gray-500);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.ak-tab-btn.active {
  background: #fff;
  color: var(--ak-gray-800);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

.ak-tab-btn svg,
.ak-tab-btn img {
  width: 1.5rem;
  height: 1.5rem;
}

.ak-tab-panel-wrap {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(255, 88, 213, 0.2) 0%, rgba(78, 110, 255, 0.2) 100%);
  padding: 1rem;
}

@media (min-width: 768px) {
  .ak-tab-panel-wrap {
    padding: 1.5rem;
  }
}

.ak-tab-panel-overlay {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18.8px);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .ak-tab-panel-overlay {
    padding: 2.5rem;
  }
}

.ak-tab-panel {
  display: none;
}

.ak-tab-panel.active {
  display: block;
}

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

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

.ak-tab-content .ak-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background: var(--ak-primary-50);
  color: var(--ak-primary-600);
}

.ak-tab-content h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ak-gray-900);
}

.ak-tab-content p {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ak-gray-600);
}

.ak-tab-image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.ak-tab-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--ak-shadow-lg);
  display: block;
}

/* Tab image light/dark switching */
.ak-tab-image .ak-tab-img-dark {
  display: none;
}

html[data-bs-theme="dark"] .ak-tab-image .ak-tab-img-light {
  display: none;
}

html[data-bs-theme="dark"] .ak-tab-image .ak-tab-img-dark {
  display: block;
}

/* ---------------------------------------------------------------------------
 * Why choose us (compare)
 * ------------------------------------------------------------------------- */
.ak-compare-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .ak-compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ak-compare-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 2rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
}

.ak-compare-card.manual {
  border: 1px solid var(--ak-red-100);
  background: #fff;
  box-shadow: var(--ak-shadow-sm);
}

.ak-compare-card.manual:hover {
  transform: translateY(-0.75rem);
  border-color: var(--ak-red-200);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.ak-compare-card.gradynex {
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 0 0 1px var(--ak-primary-500);
}

.ak-compare-card.gradynex:hover {
  transform: translateY(-1rem);
  box-shadow: 0 25px 80px rgba(59, 130, 246, 0.35);
}

.ak-compare-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.ak-compare-badge.red {
  background: var(--ak-red-50);
  color: var(--ak-red-600);
}

.ak-compare-badge.purple {
  background: var(--ak-primary-50);
  color: var(--ak-primary-600);
}

.ak-compare-card h3 {
  margin-top: 1.25rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--ak-gray-900);
}

.ak-compare-card .ak-compare-desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ak-gray-600);
}

.ak-compare-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ak-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 28px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.ak-compare-item.red {
  background: rgba(254, 242, 242, 0.7);
}

.ak-compare-item.purple {
  background: rgba(244, 243, 255, 0.7);
}

.ak-compare-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}

.ak-compare-icon.red {
  background: var(--ak-red-100);
  color: var(--ak-red-600);
}

.ak-compare-icon.purple {
  background: var(--ak-primary-100);
  color: var(--ak-primary-600);
}

.ak-compare-item h4 {
  font-weight: 600;
  color: var(--ak-gray-900);
  margin: 0;
  font-size: 1rem;
}

.ak-compare-item p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ak-gray-600);
}

.ak-recommended {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 20;
  border-radius: 9999px;
  background: var(--ak-primary-500);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: var(--ak-shadow-sm);
}

/* ---------------------------------------------------------------------------
 * Core features
 * ------------------------------------------------------------------------- */
.ak-corefeatures {
  background: var(--ak-gray-50);
}

.ak-corefeatures-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .ak-corefeatures-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .ak-corefeatures-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ak-feature-card {
  background: #fff;
  padding: 2.25rem;
  border: 1px solid var(--ak-gray-200);
  border-radius: 20px;
  box-shadow: 0 30px 50px -32px rgba(107, 110, 148, 0.04);
}

.ak-feature-icon {
  background-image: linear-gradient(180deg, #7a5af8 0%, rgba(122, 90, 248, 0) 100%);
  filter: drop-shadow(0 23px 33px rgba(87, 80, 241, 0.59));
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-bottom: 2.25rem;
}

.ak-feature-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.ak-feature-card h3 {
  margin-bottom: 1rem;
  color: var(--ak-gray-800);
  font-weight: 700;
  font-size: 1.5rem;
}

.ak-feature-card p {
  color: var(--ak-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ---------------------------------------------------------------------------
 * Benefits grid
 * ------------------------------------------------------------------------- */
.ak-benefits-grid {
  max-width: 1008px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .ak-benefits-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.ak-benefit-col-6 {
  grid-column: span 1;
}

.ak-benefit-col-12 {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .ak-benefit-col-6 {
    grid-column: span 6;
  }
  .ak-benefit-col-12 {
    grid-column: span 12;
  }
}

.ak-benefit-card {
  position: relative;
  border-radius: 20px;
  padding: 2.25rem;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .ak-benefit-card {
    padding: 3.25rem;
  }
}

.ak-benefit-card.purple {
  background: var(--ak-primary-600);
}

.ak-benefit-card.cyan {
  background: linear-gradient(216deg, #a2e4e4 0%, #1c9ef6 100%);
}

.ak-benefit-card.dark {
  background: #2d0b70;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .ak-benefit-card.dark {
    flex-direction: row;
    justify-content: space-between;
  }
}

.ak-benefit-card h3 {
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin-bottom: 1rem;
}

.ak-benefit-card .ak-benefit-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.ak-benefit-list {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ak-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ak-benefit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.ak-benefit-card img {
  max-width: 100%;
}

.ak-benefit-cta {
  max-width: 28rem;
  position: relative;
  z-index: 10;
}

.ak-benefit-blur {
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
}

/* ---------------------------------------------------------------------------
 * FAQ accordion
 * ------------------------------------------------------------------------- */
.ak-faq {
  background: #fff;
}

.ak-faq-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ak-faq-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ak-gray-200);
}

.ak-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.ak-faq-q span:first-child {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ak-gray-800);
}

.ak-faq-icon {
  flex-shrink: 0;
  margin-left: 1.5rem;
  display: inline-flex;
  color: var(--ak-gray-500);
}

.ak-faq-a {
  display: none;
  margin-top: 1.25rem;
}

.ak-faq-item.open .ak-faq-a {
  display: block;
}

.ak-faq-a p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ak-gray-500);
  margin: 0;
}

/* ---------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------- */
.ak-footer {
  position: relative;
  overflow: hidden;
  background: var(--ak-gray-900);
}

.ak-footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.ak-footer-glow svg {
  width: 1260px;
  height: 457px;
  display: block;
  max-width: none;
}

.ak-footer-main {
  position: relative;
  z-index: 10;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1280px) {
  .ak-footer-main {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.ak-footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .ak-footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.ak-footer-brand {
  grid-column: span 1;
}

.ak-footer-links {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .ak-footer-brand {
    grid-column: span 4;
  }
  .ak-footer-links {
    grid-column: span 8;
  }
}

.ak-footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.ak-footer-brand-logo {
  height: 30px;
  width: auto;
}

.ak-footer-brand-logo-dark {
  display: none;
}

html[data-bs-theme="dark"] .ak-footer-brand-logo-light {
  display: none;
}

html[data-bs-theme="dark"] .ak-footer-brand-logo-dark {
  display: inline-block;
}

.ak-footer-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.ak-footer-brand p {
  font-size: 0.875rem;
  color: var(--ak-gray-400);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ak-footer-socials {
  display: flex;
  gap: 0.5rem;
}

.ak-footer-socials a {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ak-gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ak-footer-socials a svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.ak-footer-socials a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.ak-footer-cols {
  display: grid;
  gap: 1.75rem;
}

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

.ak-footer-cols .ak-footer-col-title {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--ak-gray-400);
}

.ak-footer-cols nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ak-footer-cols nav a {
  font-size: 0.875rem;
  color: var(--ak-gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.ak-footer-bottom {
  border-top: 1px solid var(--ak-gray-800);
}

.ak-footer-bottom-inner {
  position: relative;
  z-index: 10;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: center;
}

.ak-footer-bottom-inner p {
  font-size: 0.875rem;
  color: var(--ak-gray-500);
  margin: 0;
}

.ak-footer-bottom-inner a {
  color: var(--ak-primary-400);
  font-weight: 600;
  text-decoration: none;
}

.ak-footer-bottom-inner a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------------------
 * Dark mode overrides
 * Uses Gradynex/Bootstrap theme attribute: <html data-bs-theme="dark">
 * ------------------------------------------------------------------------- */
html[data-bs-theme="dark"] .ak-landing,
html[data-bs-theme="dark"] body:has(.ak-landing) {
  color: rgba(229, 231, 235, 0.86);
  background: var(--ak-dark-secondary);
}

html[data-bs-theme="dark"] .ak-navbar {
  background: rgba(26, 34, 49, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

html[data-bs-theme="dark"] .ak-brand .ak-brand-name {
  color: rgba(229, 231, 235, 0.9);
}

html[data-bs-theme="dark"] .ak-nav-desktop {
  background: rgba(255, 255, 255, 0.06);
}

html[data-bs-theme="dark"] .ak-nav-desktop a,
html[data-bs-theme="dark"] .ak-nav-dropdown-trigger,
html[data-bs-theme="dark"] .ak-nav-signin,
html[data-bs-theme="dark"] .ak-nav-toggle,
html[data-bs-theme="dark"] .ak-nav-icon-btn,
html[data-bs-theme="dark"] .ak-nav-mobile a {
  color: rgba(229, 231, 235, 0.76);
}

html[data-bs-theme="dark"] .ak-nav-desktop a:hover,
html[data-bs-theme="dark"] .ak-nav-dropdown-trigger:hover,
html[data-bs-theme="dark"] .ak-nav-signin:hover,
html[data-bs-theme="dark"] .ak-nav-toggle:hover,
html[data-bs-theme="dark"] .ak-nav-icon-btn:hover,
html[data-bs-theme="dark"] .ak-nav-mobile a:hover {
  color: #bdb4fe;
}

html[data-bs-theme="dark"] .ak-nav-desktop a.active,
html[data-bs-theme="dark"] .ak-nav-dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .ak-nav-product-icon {
  background: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .ak-nav-mobile {
  background: rgba(26, 34, 49, 0.98);
  border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .ak-nav-mobile a:hover,
html[data-bs-theme="dark"] .ak-nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .ak-nav-dropdown-menu {
  background: rgba(23, 31, 46, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

html[data-bs-theme="dark"] .ak-nav-dropdown-menu a {
  color: rgba(229, 231, 235, 0.78);
}

html[data-bs-theme="dark"] .ak-nav-dropdown-menu a:hover {
  background: rgba(122, 90, 248, 0.14);
  color: #d9d6fe;
}

html[data-bs-theme="dark"] .ak-btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

html[data-bs-theme="dark"] .ak-btn-outline:hover {
  background: rgba(122, 90, 248, 0.12);
  border-color: rgba(189, 180, 254, 0.4);
  color: #d9d6fe;
}

html[data-bs-theme="dark"] .ak-heading h2,
html[data-bs-theme="dark"] .ak-tab-content h3,
html[data-bs-theme="dark"] .ak-compare-card h3,
html[data-bs-theme="dark"] .ak-compare-item h4,
html[data-bs-theme="dark"] .ak-feature-card h3,
html[data-bs-theme="dark"] .ak-faq-q span:first-child {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-heading p,
html[data-bs-theme="dark"] .ak-tab-content p,
html[data-bs-theme="dark"] .ak-compare-card .ak-compare-desc,
html[data-bs-theme="dark"] .ak-compare-item p,
html[data-bs-theme="dark"] .ak-feature-card p,
html[data-bs-theme="dark"] .ak-faq-a p,
html[data-bs-theme="dark"] .ak-hero-sub {
  color: rgba(209, 213, 219, 0.8);
}

html[data-bs-theme="dark"] .ak-badge,
html[data-bs-theme="dark"] .ak-tab-content .ak-pill,
html[data-bs-theme="dark"] .ak-compare-badge.purple {
  background: rgba(122, 90, 248, 0.13);
  color: #c4b5fd;
}

html[data-bs-theme="dark"] .ak-compare-badge.red {
  background: rgba(220, 38, 38, 0.12);
  color: #fca5a5;
}

html[data-bs-theme="dark"] .ak-hero {
  background: #171f2e;
}

html[data-bs-theme="dark"] .ak-hero-subheading {
  background: linear-gradient(to right, rgba(255, 88, 213, 0.62), rgba(78, 110, 255, 0.64));
}

html[data-bs-theme="dark"] .ak-hero-subheading > span {
  background: rgba(23, 31, 46, 0.92);
  color: rgba(255, 255, 255, 0.88);
}

html[data-bs-theme="dark"] .ak-hero h1 {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-video-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

html[data-bs-theme="dark"] .ak-hero-figure-frame {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

html[data-bs-theme="dark"] .ak-hero-glow {
  background-image: linear-gradient(180deg, rgba(122, 90, 248, 0) 0%, #7a5af8 100%);
}

html[data-bs-theme="dark"] .ak-tab-nav {
  background: rgba(255, 255, 255, 0.07);
}

html[data-bs-theme="dark"] .ak-tab-btn {
  color: rgba(229, 231, 235, 0.72);
}

html[data-bs-theme="dark"] .ak-tab-btn.active {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

html[data-bs-theme="dark"] .ak-tab-panel-wrap {
  background: linear-gradient(90deg, rgba(255, 88, 213, 0.15) 0%, rgba(78, 110, 255, 0.2) 100%);
}

html[data-bs-theme="dark"] .ak-tab-panel-overlay {
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

html[data-bs-theme="dark"] .ak-tab-image img {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

html[data-bs-theme="dark"] .ak-compare-card.manual,
html[data-bs-theme="dark"] .ak-compare-card.gradynex {
  background: rgba(23, 31, 46, 0.82);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .ak-compare-card.gradynex {
  box-shadow: 0 0 0 1px rgba(122, 90, 248, 0.6), 0 20px 70px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .ak-compare-card.manual:hover,
html[data-bs-theme="dark"] .ak-compare-card.gradynex:hover {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

html[data-bs-theme="dark"] .ak-compare-item.red {
  background: rgba(127, 29, 29, 0.22);
}

html[data-bs-theme="dark"] .ak-compare-item.purple {
  background: rgba(122, 90, 248, 0.13);
}

html[data-bs-theme="dark"] .ak-compare-icon.red {
  background: rgba(220, 38, 38, 0.16);
  color: #fca5a5;
}

html[data-bs-theme="dark"] .ak-compare-icon.purple {
  background: rgba(122, 90, 248, 0.18);
  color: #c4b5fd;
}

html[data-bs-theme="dark"] .ak-corefeatures,
html[data-bs-theme="dark"] .ak-faq {
  background: var(--ak-dark-secondary);
}

html[data-bs-theme="dark"] .ak-feature-card {
  background: rgba(23, 31, 46, 0.86);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 70px -32px rgba(0, 0, 0, 0.7);
}

html[data-bs-theme="dark"] .ak-faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html[data-bs-theme="dark"] .ak-faq-icon {
  color: rgba(209, 213, 219, 0.72);
}

html[data-bs-theme="dark"] .ak-footer {
  background: #0f172a;
}

html[data-bs-theme="dark"] .ak-footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* ---------------------------------------------------------------------------
 * Product / Affiliate public pages
 * ------------------------------------------------------------------------- */
.ak-product-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 90, 248, 0.12), transparent 34%),
    radial-gradient(circle at 100% 8%, rgba(28, 158, 246, 0.1), transparent 28%),
    #fff;
  padding-top: 5rem;
}

.ak-product-page::before,
.ak-product-page::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 9999px;
  z-index: 0;
}

.ak-product-page::before {
  width: 500px;
  height: 500px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(217, 70, 239, 0.1);
  filter: blur(120px);
}

.ak-product-page::after {
  width: 350px;
  height: 350px;
  right: -90px;
  bottom: 12rem;
  background: rgba(59, 130, 246, 0.1);
  filter: blur(100px);
}

.ak-product-shell {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.ak-product-hero {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ak-product-hero h1 {
  margin: 1.5rem auto 0;
  max-width: 820px;
  color: var(--ak-gray-900);
  font-weight: 800;
  line-height: 1.08;
  font-size: clamp(2.35rem, 5vw, 3.75rem);
}

.ak-product-hero p {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: var(--ak-gray-600);
  font-size: 1.1rem;
  line-height: 1.8;
}

.ak-product-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.ak-product-stats {
  margin: 3rem auto 0;
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

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

.ak-product-stat {
  border: 1px solid var(--ak-gray-200);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.25rem;
  box-shadow: var(--ak-shadow-sm);
  backdrop-filter: blur(12px);
}

.ak-product-stat strong {
  display: block;
  color: var(--ak-primary-600);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.ak-product-stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ak-gray-500);
  font-size: 0.875rem;
  font-weight: 500;
}

.ak-product-section {
  margin-top: 7rem;
}

.ak-product-feature-grid,
.ak-product-benefit-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.ak-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--ak-gray-100);
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 18px 50px rgba(107, 110, 148, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ak-product-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(122, 90, 248, 0.25);
  box-shadow: 0 24px 70px rgba(107, 110, 148, 0.16);
}

.ak-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 90, 248, 0.08), rgba(255, 88, 213, 0.06));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ak-product-card:hover::before {
  opacity: 1;
}

.ak-product-card > * {
  position: relative;
  z-index: 1;
}

.ak-product-card-number {
  position: absolute;
  right: 1.25rem;
  top: 0.65rem;
  color: var(--ak-gray-100);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.ak-product-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, var(--ak-primary-100), #ffe6fb);
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
}

.ak-product-card h3 {
  color: var(--ak-gray-900);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.ak-product-card p {
  color: var(--ak-gray-600);
  line-height: 1.65;
  margin: 0;
}

.ak-product-cta {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--ak-gray-100);
  background: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--ak-shadow-sm);
}

@media (min-width: 768px) {
  .ak-product-cta {
    padding: 4rem;
  }
}

.ak-product-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 88, 213, 0.08), transparent, rgba(78, 110, 255, 0.08));
}

.ak-product-cta > * {
  position: relative;
  z-index: 1;
}

.ak-product-cta h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ak-gray-900);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}

.ak-product-cta p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--ak-gray-600);
  line-height: 1.75;
}

html[data-bs-theme="dark"] .ak-product-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 90, 248, 0.2), transparent 34%),
    radial-gradient(circle at 100% 8%, rgba(28, 158, 246, 0.16), transparent 28%),
    var(--ak-dark-secondary);
}

html[data-bs-theme="dark"] .ak-product-hero h1,
html[data-bs-theme="dark"] .ak-product-card h3,
html[data-bs-theme="dark"] .ak-product-cta h2 {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-product-hero p,
html[data-bs-theme="dark"] .ak-product-card p,
html[data-bs-theme="dark"] .ak-product-cta p {
  color: rgba(209, 213, 219, 0.8);
}

html[data-bs-theme="dark"] .ak-product-stat,
html[data-bs-theme="dark"] .ak-product-card,
html[data-bs-theme="dark"] .ak-product-cta {
  background: rgba(23, 31, 46, 0.84);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .ak-product-stat span {
  color: rgba(209, 213, 219, 0.76);
}

html[data-bs-theme="dark"] .ak-product-card-number {
  color: rgba(255, 255, 255, 0.04);
}

html[data-bs-theme="dark"] .ak-product-card-icon {
  background: linear-gradient(135deg, rgba(122, 90, 248, 0.18), rgba(255, 88, 213, 0.12));
}

/* ---------------------------------------------------------------------------
 * Affiliate public landing — steps + FAQ accordion
 * ------------------------------------------------------------------------- */
.ak-affiliate-step-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.ak-affiliate-step {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--ak-gray-100);
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 18px 50px rgba(107, 110, 148, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ak-affiliate-step:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 24px 70px rgba(107, 110, 148, 0.16);
}

.ak-affiliate-step-number {
  display: block;
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 900;
  color: rgba(122, 90, 248, 0.3);
  line-height: 1;
}

.ak-affiliate-step h4 {
  color: var(--ak-gray-900);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.ak-affiliate-step p {
  color: var(--ak-gray-600);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

.ak-affiliate-faq {
  max-width: 720px;
  margin: 0 auto;
}

.ak-affiliate-faq-item {
  border-bottom: 1px solid var(--ak-gray-200);
  padding: 1.25rem 0;
}

.ak-affiliate-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ak-gray-900);
  font-size: 1.05rem;
  font-weight: 600;
}

.ak-affiliate-faq-q .ak-affiliate-faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--ak-gray-500);
}

.ak-affiliate-faq-item.open .ak-affiliate-faq-icon {
  transform: rotate(45deg);
}

.ak-affiliate-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.ak-affiliate-faq-item.open .ak-affiliate-faq-a {
  max-height: 320px;
  margin-top: 1rem;
}

.ak-affiliate-faq-a p {
  color: var(--ak-gray-600);
  line-height: 1.75;
  margin: 0;
}

html[data-bs-theme="dark"] .ak-affiliate-step {
  background: rgba(23, 31, 46, 0.84);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .ak-affiliate-step h4 {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-affiliate-step p,
html[data-bs-theme="dark"] .ak-affiliate-faq-a p {
  color: rgba(209, 213, 219, 0.8);
}

html[data-bs-theme="dark"] .ak-affiliate-faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html[data-bs-theme="dark"] .ak-affiliate-faq-q {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-affiliate-faq-icon {
  color: rgba(209, 213, 219, 0.72);
}

/* Utility */
.ak-hide-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .ak-hide-mobile {
    display: block;
  }
}

/* ---------------------------------------------------------------------------
 * Pixel-close landing overrides
 * High-specificity, AK-scoped overrides to stay isolated from Bootstrap/Vuexy.
 * ------------------------------------------------------------------------- */
.ak-navbar,
.ak-landing,
.ak-footer {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ak-navbar *,
.ak-navbar *::before,
.ak-navbar *::after,
.ak-landing *,
.ak-landing *::before,
.ak-landing *::after,
.ak-footer *,
.ak-footer *::before,
.ak-footer *::after {
  box-sizing: border-box;
}

.ak-navbar a,
.ak-landing a,
.ak-footer a {
  text-decoration: none;
}

.ak-navbar button,
.ak-landing button,
.ak-footer button,
.ak-footer input {
  font: inherit;
}

.ak-landing img,
.ak-navbar img,
.ak-footer img,
.ak-footer svg,
.ak-landing svg {
  max-width: 100%;
}

.ak-landing .ak-hero {
  background: #fff;
}

html[data-bs-theme="dark"] .ak-landing .ak-hero {
  background: #171f2e;
}

.ak-landing .ak-hero-glow-svg {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translate(-50%, -5rem);
  z-index: 10;
  pointer-events: none;
}

.ak-landing .ak-hero-glow-svg svg {
  width: 800px;
  height: 600px;
  display: block;
}


.ak-landing .ak-tab-panel-wrap {
  background: linear-gradient(90deg, rgba(255, 88, 213, 0.2) 0%, rgba(78, 110, 255, 0.2) 100%);
}

.ak-landing .ak-tab-panel-overlay {
  backdrop-filter: blur(18.8px);
  -webkit-backdrop-filter: blur(18.8px);
}

.ak-footer .ak-footer-glow {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.ak-footer .ak-footer-glow svg {
  width: 1260px;
  height: 457px;
  display: block;
  max-width: none;
}

@media (min-width: 1024px) {
  .ak-navbar .ak-navbar-inner {
    grid-template-columns: 1fr auto 1fr;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

/* ---------------------------------------------------------------------------
 * Hero floating shapes — match original aistarterkit HeroSection.
 * Shapes are anchored to the full-width hero container (max-w-[120rem]),
 * NOT to the 1000px dashboard frame, so they sit near the viewport edges.
 * ------------------------------------------------------------------------- */
.ak-landing .ak-hero-floating {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.ak-landing .ak-hero-floating .ak-hero-shape {
  position: absolute;
  height: auto;
  max-width: none;
  pointer-events: none;
}

.ak-landing .ak-hero-floating .ak-hero-shape-1 {
  width: 170px;
  top: 3.5rem;
  left: 4rem;
}

.ak-landing .ak-hero-floating .ak-hero-shape-2 {
  width: 181px;
  top: 298px;
  left: 145px;
}

.ak-landing .ak-hero-floating .ak-hero-shape-3 {
  width: 176px;
  top: 108px;
  right: 4rem;
}

.ak-landing .ak-hero-floating .ak-hero-shape-4 {
  width: 179px;
  top: 316px;
  right: 200px;
}

@media (max-width: 1500px) {
  .ak-landing .ak-hero-floating .ak-hero-shape-4 {
    right: 200px;
  }
}

@media (max-width: 1350px) {
  .ak-landing .ak-hero-floating .ak-hero-shape-4 {
    right: 150px;
  }
}

@media (max-width: 1240px) {
  .ak-landing .ak-hero-floating .ak-hero-shape-2 {
    left: 80px;
  }

  .ak-landing .ak-hero-floating .ak-hero-shape-4 {
    right: 80px;
  }
}

/* Hidden below 1100px, matching original max-[1100px]:hidden */
@media (max-width: 1100px) {
  .ak-landing .ak-hero-floating {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
 * Navbar pixel-close overrides (match aistarterkit header.tsx / desktop-nav.tsx)
 * ------------------------------------------------------------------------- */
.ak-navbar .ak-nav-icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 0;
  background: #f2f4f7;
  color: var(--ak-gray-500);
  cursor: pointer;
}

.ak-navbar .ak-nav-icon-btn:hover {
  background: #f2f4f7;
  color: var(--ak-primary-500);
}

.ak-navbar .ak-nav-cta.ak-btn {
  height: 2.75rem;
  padding: 0.75rem 1.25rem;
}

.ak-navbar .ak-nav-dropdown-menu {
  border-radius: 1rem;
  padding: 0.75rem;
  border-color: var(--ak-gray-100);
  box-shadow: var(--ak-shadow-lg);
}

.ak-navbar .ak-nav-dropdown-menu a {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
}

.ak-navbar .ak-nav-products-menu {
  padding: 0.75rem;
}

.ak-navbar .ak-nav-product-link {
  padding: 0.75rem 1rem !important;
  border-radius: 1rem;
}

.ak-navbar .ak-nav-product-link:hover {
  background: var(--ak-gray-50);
}

.ak-navbar .ak-nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  min-height: calc(100vh - 100%);
  border-top: 1px solid var(--ak-gray-200);
  padding: 0.5rem 2rem 0.75rem;
  background: #fff;
  z-index: 40;
}

.ak-navbar .ak-nav-mobile.open {
  display: block;
}

.ak-navbar .ak-nav-mobile a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ak-gray-500);
}

.ak-navbar .ak-nav-mobile .ak-nav-mobile-actions {
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  gap: 0.75rem;
}

.ak-navbar .ak-nav-mobile .ak-nav-mobile-actions .ak-btn {
  height: 2.75rem;
  width: 100%;
}

.ak-navbar .ak-nav-mobile .ak-nav-mobile-actions .ak-btn-outline {
  border-color: var(--ak-gray-200);
}

@media (min-width: 1024px) {
  .ak-navbar .ak-hide-mobile {
    display: inline-flex;
  }
}

html[data-bs-theme="dark"] .ak-navbar .ak-nav-icon-btn {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(229, 231, 235, 0.76);
}

html[data-bs-theme="dark"] .ak-navbar .ak-nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #bdb4fe;
}

html[data-bs-theme="dark"] .ak-navbar .ak-nav-mobile {
  background: var(--ak-dark-primary, #1a2231);
  border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .ak-navbar .ak-nav-product-link:hover,
html[data-bs-theme="dark"] .ak-navbar .ak-nav-dropdown-menu a:hover {
  background: rgba(122, 90, 248, 0.14);
}

/* ---------------------------------------------------------------------------
 * Affiliate register page
 * ------------------------------------------------------------------------- */
.ak-register-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.ak-register-intro {
  text-align: center;
}

@media (min-width: 992px) {
  .ak-register-intro {
    text-align: start;
  }
}

.ak-register-intro h1 {
  color: var(--ak-gray-900);
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 1rem 0 0;
}

.ak-register-intro p {
  color: var(--ak-gray-600);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1rem 0 0;
  max-width: 720px;
}

@media (min-width: 992px) {
  .ak-register-intro p {
    margin: 1rem 0 0;
  }
}

.ak-register-benefits {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 576px) {
  .ak-register-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

.ak-register-benefit {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.ak-register-benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 1.35rem;
  line-height: 1;
}

.ak-register-benefit-icon--primary {
  color: var(--ak-primary-600);
  background: linear-gradient(135deg, var(--ak-primary-100), #ffe6fb);
}

.ak-register-benefit-icon--success {
  color: #16a34a;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(22, 163, 74, 0.05));
}

.ak-register-benefit h4 {
  color: var(--ak-gray-900);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.ak-register-benefit p {
  color: var(--ak-gray-600);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* SSO Card */
.ak-register-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--ak-gray-100);
  background: #fff;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 18px 50px rgba(107, 110, 148, 0.10);
}

@media (min-width: 576px) {
  .ak-register-card {
    padding: 3.5rem 3rem;
  }
}

.ak-register-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 90, 248, 0.06), rgba(255, 88, 213, 0.04));
  opacity: 0.6;
  pointer-events: none;
}

.ak-register-card > * {
  position: relative;
  z-index: 1;
}

.ak-register-card-hero {
  width: 5.25rem;
  height: 5.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  background: var(--ak-gradient-btn);
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0.85rem 2rem rgba(122, 90, 248, 0.25);
}

.ak-register-card h3 {
  color: var(--ak-gray-900);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.ak-register-card p {
  color: var(--ak-gray-600);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.ak-register-card .ak-btn {
  width: 100%;
  height: 3.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.ak-register-back {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--ak-gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ak-register-back:hover {
  color: var(--ak-primary-500);
}

/* Alert inside SSO card */
.ak-register-card .ak-alert {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  text-align: start;
}

.ak-register-card .ak-alert--success {
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.ak-register-card .ak-alert--warning {
  background: rgba(234, 179, 8, 0.08);
  color: #b45309;
  border: 1px solid rgba(234, 179, 8, 0.15);
}

.ak-register-card .ak-alert--danger {
  background: rgba(220, 38, 38, 0.08);
  color: var(--ak-red-600);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

/* Dark mode */
html[data-bs-theme="dark"] .ak-register-intro h1,
html[data-bs-theme="dark"] .ak-register-card h3 {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-register-intro p,
html[data-bs-theme="dark"] .ak-register-card p,
html[data-bs-theme="dark"] .ak-register-benefit p {
  color: rgba(209, 213, 219, 0.8);
}

html[data-bs-theme="dark"] .ak-register-benefit h4 {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-register-card {
  background: rgba(23, 31, 46, 0.84);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .ak-register-card::before {
  background: linear-gradient(135deg, rgba(122, 90, 248, 0.1), rgba(255, 88, 213, 0.06));
}

html[data-bs-theme="dark"] .ak-register-benefit-icon--success {
  color: #4ade80;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.12), rgba(74, 222, 128, 0.05));
}

html[data-bs-theme="dark"] .ak-register-back {
  color: rgba(209, 213, 219, 0.6);
}

html[data-bs-theme="dark"] .ak-register-back:hover {
  color: var(--ak-primary-400);
}

html[data-bs-theme="dark"] .ak-register-card .ak-alert--success {
  background: rgba(22, 163, 74, 0.12);
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.2);
}

html[data-bs-theme="dark"] .ak-register-card .ak-alert--warning {
  background: rgba(234, 179, 8, 0.12);
  color: #facc15;
  border-color: rgba(250, 204, 21, 0.2);
}

html[data-bs-theme="dark"] .ak-register-card .ak-alert--danger {
  background: rgba(220, 38, 38, 0.12);
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.2);
}

/* ==========================================================================
   Contact Page (ak-contact-*)
   ========================================================================== */

.ak-contact-hero {
  padding: 7rem 0 3rem;
  text-align: center;
}

.ak-contact-hero-title {
  font-family: 'Onest', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ak-gray-900);
  margin-bottom: 0.75rem;
}

.ak-contact-hero-subtitle {
  font-size: 1.125rem;
  color: var(--ak-gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.ak-contact-section {
  position: relative;
  padding: 2rem 0 6rem;
  overflow: hidden;
}

.ak-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

/* Form Card */
.ak-contact-form-card {
  background: #fff;
  border: 1px solid var(--ak-gray-100);
  border-radius: 1rem;
  padding: 2.5rem;
  position: relative;
  z-index: 30;
}

.ak-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ak-contact-field--full {
  grid-column: 1 / -1;
}

.ak-contact-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ak-gray-700);
  margin-bottom: 0.375rem;
}

.ak-contact-input {
  display: block;
  width: 100%;
  height: 2.75rem;
  padding: 0 0.875rem;
  font-size: 0.875rem;
  color: var(--ak-gray-800);
  background: #fff;
  border: 1px solid var(--ak-gray-200);
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ak-contact-input:focus {
  outline: none;
  border-color: var(--ak-primary-500);
  box-shadow: 0 0 0 3px rgba(122, 90, 248, 0.1);
}

.ak-contact-input::placeholder {
  color: var(--ak-gray-400);
}

.ak-contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.ak-contact-textarea {
  height: auto;
  padding: 0.75rem 0.875rem;
  resize: vertical;
  min-height: 120px;
}

.ak-contact-submit {
  width: 100%;
  height: 3rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Info Section */
.ak-contact-info {
  position: relative;
  z-index: 30;
}

.ak-contact-info-title {
  font-family: 'Onest', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ak-gray-900);
  margin-bottom: 0.5rem;
}

.ak-contact-info-subtitle {
  font-size: 0.9375rem;
  color: var(--ak-gray-500);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.ak-contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ak-contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--ak-gray-100);
  border-radius: 0.75rem;
  transition: box-shadow 0.2s;
}

.ak-contact-info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ak-contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.625rem;
  background: var(--ak-primary-50);
  color: var(--ak-primary-600);
  flex-shrink: 0;
}

.ak-contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.ak-contact-info-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ak-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.ak-contact-info-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ak-gray-800);
}

/* Background Glow */
.ak-contact-glow {
  position: absolute;
  bottom: -12rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .ak-contact-hero {
    padding: 5rem 0 2rem;
  }

  .ak-contact-hero-title {
    font-size: 1.75rem;
  }

  .ak-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ak-contact-form-card {
    padding: 1.5rem;
  }

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

/* Dark Mode */
html[data-bs-theme="dark"] .ak-contact-hero-title {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-contact-hero-subtitle {
  color: var(--ak-gray-400);
}

html[data-bs-theme="dark"] .ak-contact-form-card {
  background: var(--ak-gray-900);
  border-color: var(--ak-gray-800);
}

html[data-bs-theme="dark"] .ak-contact-label {
  color: var(--ak-gray-300);
}

html[data-bs-theme="dark"] .ak-contact-input {
  background: transparent;
  border-color: var(--ak-gray-700);
  color: #fff;
}

html[data-bs-theme="dark"] .ak-contact-input::placeholder {
  color: var(--ak-gray-500);
}

html[data-bs-theme="dark"] .ak-contact-info-title {
  color: #fff;
}

html[data-bs-theme="dark"] .ak-contact-info-subtitle {
  color: var(--ak-gray-400);
}

html[data-bs-theme="dark"] .ak-contact-info-card {
  background: var(--ak-gray-900);
  border-color: var(--ak-gray-800);
}

html[data-bs-theme="dark"] .ak-contact-info-icon {
  background: rgba(122, 90, 248, 0.12);
  color: var(--ak-primary-400);
}

html[data-bs-theme="dark"] .ak-contact-info-label {
  color: var(--ak-gray-400);
}

html[data-bs-theme="dark"] .ak-contact-info-value {
  color: #fff;
}
