/**
 * Akillio Landing — Premium overrides
 * Loaded after custom.css on index.php
 */

.akl-landing-page {
  --akl-ink: #08051a;
  --akl-ink-soft: #1c1635;
  --akl-purple: #6d4aff;
  --akl-purple-deep: #4527a8;
  --akl-purple-glow: rgba(109, 74, 255, 0.45);
  --akl-gold: #f0c14b;
  --akl-gold-deep: #d4a017;
  --akl-mint: #5eead4;
  --akl-surface: #faf9fd;
  --akl-surface-alt: #f3f0fa;
  --akl-border: rgba(109, 74, 255, 0.1);
  --akl-border-strong: rgba(109, 74, 255, 0.22);
  --akl-shadow-sm: 0 2px 8px rgba(8, 5, 26, 0.04), 0 8px 24px rgba(109, 74, 255, 0.06);
  --akl-shadow-md: 0 8px 32px rgba(8, 5, 26, 0.08), 0 24px 48px rgba(109, 74, 255, 0.1);
  --akl-shadow-lg: 0 16px 48px rgba(8, 5, 26, 0.12), 0 32px 80px rgba(109, 74, 255, 0.18);
  --akl-radius: 20px;
  --akl-radius-lg: 28px;
  --akl-font-display: "Plus Jakarta Sans", "Inter", sans-serif;
  background: var(--akl-surface);
}

.akl-landing-page.boxed_wrapper {
  background: var(--akl-surface);
  max-width: none;
  padding: 0;
  box-shadow: none;
}

.akl-landing-page .preloader {
  background: #050314;
}

.akl-landing-page .mobile-menu {
  display: none !important;
}

/* ===== SITE NAV (landing-only, GymAsync-style) ===== */
.akl-site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.akl-site-nav .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.akl-site-nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.akl-site-nav-logo img {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: filter 0.3s ease, height 0.3s ease;
}

/* Dark hero: lighten logo if needed */
.akl-site-nav:not(.is-scrolled) .akl-site-nav-logo img {
  filter: brightness(0) invert(1);
}

.akl-site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.akl-site-nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: -0.01em;
}

.akl-site-nav-link i {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.6;
}

.akl-site-nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.akl-site-nav-dropdown {
  position: relative;
}

.akl-site-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  padding: 8px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--akl-border);
  box-shadow: var(--akl-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.22s ease;
}

.akl-site-nav-dropdown:hover .akl-site-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.akl-site-nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--akl-ink-soft) !important;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.akl-site-nav-dropdown-menu a:hover {
  background: var(--akl-surface-alt);
  color: var(--akl-purple) !important;
}

.akl-site-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Same TR/EN control on homepage, inner pages, scrolled and mobile */
header.akl-site-nav .akl-site-lang,
.akl-site-nav .akl-site-lang,
.akl-site-lang {
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  padding: 3px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(109, 74, 255, 0.28) !important;
  background: #fff !important;
  box-shadow: 0 6px 18px rgba(8, 5, 26, 0.12) !important;
}

header.akl-site-nav .akl-site-lang a.akl-site-lang-btn,
.akl-site-nav .akl-site-lang a.akl-site-lang-btn,
a.akl-site-lang-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  min-height: 28px !important;
  padding: 6px 10px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  color: #5a5470 !important;
  background: transparent !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
}

header.akl-site-nav .akl-site-lang a.akl-site-lang-btn:hover,
.akl-site-nav .akl-site-lang a.akl-site-lang-btn:hover,
a.akl-site-lang-btn:hover {
  color: #4527a8 !important;
  background: rgba(109, 74, 255, 0.08) !important;
}

header.akl-site-nav .akl-site-lang a.akl-site-lang-btn.is-active,
.akl-site-nav .akl-site-lang a.akl-site-lang-btn.is-active,
a.akl-site-lang-btn.is-active {
  background: linear-gradient(135deg, #6d4aff 0%, #4527a8 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(109, 74, 255, 0.35) !important;
}

.akl-site-lang.is-mobile {
  margin: 8px 0 4px !important;
  width: fit-content !important;
}

.akl-site-nav-login {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.22s ease;
}

.akl-site-nav-login:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.akl-site-nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--akl-ink) !important;
  text-decoration: none !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5d061 0%, #f0c14b 100%);
  box-shadow: 0 4px 20px rgba(240, 193, 75, 0.3);
  transition: all 0.22s ease;
}

.akl-site-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(240, 193, 75, 0.45);
  color: var(--akl-ink) !important;
}

.akl-site-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  margin-left: auto;
}

.akl-site-nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s ease;
}

.akl-site-nav-mobile {
  display: none;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 5, 26, 0.98);
}

.akl-site-nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 16px;
}

.akl-site-nav-mobile a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none !important;
  border-radius: 10px;
}

.akl-site-nav-mobile a.is-sub {
  padding-left: 32px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65) !important;
}

.akl-site-nav-mobile a.is-cta {
  margin-top: 8px;
  text-align: center;
  background: linear-gradient(135deg, #f5d061 0%, #f0c14b 100%);
  color: var(--akl-ink) !important;
}

/* Scrolled — koyu cam bar, beyaza dönmesin */
.akl-site-nav.is-scrolled {
  padding: 10px 0;
  background: rgba(8, 5, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.akl-site-nav.is-scrolled .akl-site-nav-logo img {
  filter: brightness(0) invert(1);
}

.akl-site-nav.is-scrolled .akl-site-nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
}

.akl-site-nav.is-scrolled .akl-site-nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}

.akl-site-nav.is-scrolled .akl-site-nav-login {
  color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.akl-site-nav.is-scrolled .akl-site-nav-login:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
}

.akl-site-nav.is-scrolled .akl-site-nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.akl-site-nav.is-scrolled .akl-site-nav-toggle span {
  background: #fff;
}

.akl-site-nav.is-open .akl-site-nav-mobile {
  display: block;
}

.akl-site-nav.is-open .akl-site-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.akl-site-nav.is-open .akl-site-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.akl-site-nav.is-open .akl-site-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== LANDING PRICING (yeni tasarım) ===== */
.akl-lp-pricing {
  background: linear-gradient(180deg, #f5f3fa 0%, #faf9fd 100%);
}

.akl-lp-billing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  padding: 8px 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--akl-border);
  border-radius: 999px;
  box-shadow: var(--akl-shadow-sm);
}

.akl-lp-billing button {
  border: none;
  background: transparent;
  font-family: var(--akl-font-display);
  font-size: 15px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  padding: 6px 12px;
  transition: color 0.2s ease;
}

.akl-lp-billing button.is-active {
  color: var(--akl-ink);
}

.akl-lp-billing-toggle {
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--akl-purple) 0%, var(--akl-purple-deep) 100%);
  position: relative;
  padding: 0;
  flex-shrink: 0;
}

.akl-lp-billing-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.22s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.akl-lp-pricing[data-billing="yearly"] .akl-lp-billing-knob {
  transform: translateX(24px);
}

.akl-lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.akl-lp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--akl-border);
  border-radius: var(--akl-radius-lg);
  box-shadow: var(--akl-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.akl-lp-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--akl-shadow-md);
}

.akl-lp-price-card.is-featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--akl-purple) 0%, #a78bfa 50%, var(--akl-gold) 100%) border-box;
  box-shadow: var(--akl-shadow-lg);
  transform: scale(1.03);
}

.akl-lp-price-card.is-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.akl-lp-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--akl-gold) 0%, var(--akl-gold-deep) 100%);
  color: var(--akl-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(240, 193, 75, 0.4);
}

.akl-lp-price-tier {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.akl-lp-price-card h3 {
  margin: 0 0 20px;
  font-family: var(--akl-font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--akl-ink);
}

.akl-lp-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--akl-border);
}

.akl-lp-price-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--akl-purple);
  line-height: 1;
  margin-bottom: 6px;
}

.akl-lp-price-value {
  font-family: var(--akl-font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--akl-purple-deep);
}

.akl-lp-price-card.is-featured .akl-lp-price-value {
  background: linear-gradient(135deg, var(--akl-purple) 0%, var(--akl-purple-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.akl-lp-price-period {
  font-size: 15px;
  font-weight: 600;
  color: #888;
  margin-bottom: 4px;
}

.akl-lp-price-note {
  margin: 0 0 20px;
  font-size: 13px;
  color: #888;
}

.akl-lp-price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}

.akl-lp-price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f5f3fa;
}

.akl-lp-price-features li:last-child {
  border-bottom: none;
}

.akl-lp-price-features i {
  color: var(--akl-purple);
  font-size: 12px;
  flex-shrink: 0;
}

.akl-lp-price-btn {
  width: 100%;
  margin-top: auto;
  min-height: 48px !important;
  font-size: 15px !important;
}

.akl-lp-pricing-trust {
  margin-top: 36px;
}

.akl-lp-pricing-trust li {
  color: #666 !important;
}

.akl-lp-pricing-trust i {
  color: var(--akl-purple) !important;
}

/* Legacy header hidden only when landing nav is present */
.akl-landing-page:has(.akl-site-nav) .main-header {
  display: none !important;
}

.akl-landing {
  font-family: var(--akl-font-display);
  color: var(--akl-ink-soft);
  letter-spacing: -0.01em;
}

/* ===== HERO ===== */
.akl-landing-hero {
  position: relative;
  padding: 128px 0 0;
  background: linear-gradient(165deg, #050314 0%, #0f0828 35%, #1a0f42 70%, #251458 100%);
  overflow: hidden;
}

.akl-landing-hero-curve {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-top: 72px;
}

.akl-landing-hero-curve svg {
  display: block;
  width: 100%;
  height: 80px;
}

.akl-landing-section-first {
  padding-top: 48px;
  margin-top: -1px;
  background: var(--akl-surface);
}

.akl-landing-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.akl-landing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: akl-orb-float 14s ease-in-out infinite;
}

.akl-landing-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(109, 74, 255, 0.5) 0%, transparent 70%);
  top: -180px;
  right: -120px;
}

.akl-landing-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 193, 75, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-delay: -5s;
}

.akl-landing-orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.15) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation-delay: -9s;
}

.akl-landing-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

@keyframes akl-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.98); }
}

.akl-landing-hero-grid {
  position: relative;
  z-index: 2;
  gap: 64px;
}

.akl-landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.akl-landing-kicker i {
  font-size: 10px;
  color: var(--akl-gold);
}

.akl-landing-hero-copy h1 {
  font-family: var(--akl-font-display);
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 22px 0 32px;
}

.akl-landing-hero-copy h1 em {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 40%, #f0c14b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.akl-landing-hero-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.akl-landing-hero-list li:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.akl-landing-hero-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109, 74, 255, 0.35) 0%, rgba(109, 74, 255, 0.12) 100%);
  border: 1px solid rgba(167, 139, 250, 0.25);
  box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
}

.akl-landing-hero-list strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Premium CTA */
.akl-landing-btn {
  font-family: var(--akl-font-display);
  min-height: 54px;
  padding: 15px 32px;
  font-size: 15px;
  letter-spacing: -0.01em;
  gap: 10px;
}

.akl-landing-btn i {
  font-size: 13px;
  transition: transform 0.22s ease;
}

.akl-landing-btn:hover i {
  transform: translateX(3px);
}

.akl-landing-btn-primary {
  background: linear-gradient(135deg, #f5d061 0%, #f0c14b 45%, #d4a017 100%);
  color: var(--akl-ink) !important;
  box-shadow:
    0 4px 16px rgba(240, 193, 75, 0.4),
    0 12px 40px rgba(240, 193, 75, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.akl-landing-btn-primary:hover {
  background: linear-gradient(135deg, #ffe082 0%, #f5d061 50%, #f0c14b 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(240, 193, 75, 0.5),
    0 20px 48px rgba(240, 193, 75, 0.25);
}

.akl-landing-btn-outline {
  border: 1.5px solid var(--akl-purple);
  color: var(--akl-purple) !important;
  background: rgba(109, 74, 255, 0.04);
}

.akl-landing-btn-outline:hover {
  background: var(--akl-purple);
  box-shadow: var(--akl-shadow-md);
}

.akl-landing-trust li {
  font-size: 13px;
  font-weight: 500;
}

.akl-landing-trust i {
  color: var(--akl-mint);
}

/* Hero visual */
.akl-landing-hero-visual {
  position: relative;
}

.akl-landing-hero-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, var(--akl-purple-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.akl-landing-float-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
  color: var(--akl-ink-soft);
  box-shadow: var(--akl-shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.akl-landing-float-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: akl-pulse-ring 2s infinite;
}

@keyframes akl-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.akl-landing-page .akl-mock-dashboard {
  position: relative;
  z-index: 2;
  border-radius: var(--akl-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    var(--akl-shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.akl-landing-hero-visual:hover .akl-mock-dashboard {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.akl-landing-page .akl-mock {
  border-radius: var(--akl-radius);
  border: 1px solid var(--akl-border);
  box-shadow: var(--akl-shadow-md);
}

.akl-landing-page .akl-mock-sidebar {
  background: linear-gradient(180deg, #0d0a1f 0%, #1a1035 100%);
}

.akl-landing-page .akl-mock-stats div {
  background: linear-gradient(135deg, #faf9fd 0%, #f3f0fa 100%);
  border: 1px solid var(--akl-border);
}

.akl-landing-page .akl-mock-card.is-hot {
  background: linear-gradient(135deg, #f5f2ff 0%, #ede9fe 100%);
  border-color: var(--akl-purple);
  box-shadow: 0 4px 12px rgba(109, 74, 255, 0.12);
}

/* ===== SECTIONS ===== */
.akl-landing-section {
  padding: 112px 0;
}

.akl-landing section[id] {
  scroll-margin-top: 88px;
}

.akl-landing-section.alt {
  background: linear-gradient(180deg, #f5f3fa 0%, #eeebf5 50%, #f5f3fa 100%);
}

.akl-landing-section .akl-landing-label {
  background: linear-gradient(135deg, rgba(109, 74, 255, 0.1) 0%, rgba(109, 74, 255, 0.05) 100%);
  border: 1px solid var(--akl-border-strong);
  color: var(--akl-purple-deep);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.akl-landing-section-head h2,
.akl-landing-section-head h3 {
  font-family: var(--akl-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--akl-ink);
}

.akl-landing-section-head p {
  color: #5a5470;
  font-size: 18px;
  line-height: 1.75;
}

/* Preview tabs */
.akl-landing-preview {
  max-width: 960px;
}

.akl-landing-split-features .akl-landing-preview {
  max-width: none;
  width: 100%;
}

.akl-landing-split-features .akl-landing-preview-tabs {
  margin-left: 0;
  margin-right: 0;
}

.akl-landing-split-features + .akl-landing-feature-cards {
  margin-top: 56px;
}

.akl-landing-preview-tabs {
  justify-content: center;
  margin-bottom: 24px;
  padding: 6px;
  background: rgba(109, 74, 255, 0.06);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--akl-border);
}

.akl-landing-preview-tabs button {
  border: none;
  background: transparent;
  padding: 10px 24px;
  border-radius: 999px;
  font-family: var(--akl-font-display);
  font-weight: 600;
  transition: all 0.22s ease;
}

.akl-landing-preview-tabs button.is-active {
  background: #fff;
  color: var(--akl-purple-deep);
  box-shadow: var(--akl-shadow-sm);
}

.akl-landing-page .akl-mock-table {
  border-radius: var(--akl-radius-lg);
  overflow: hidden;
}

.akl-landing-feature-cards article {
  border-radius: var(--akl-radius);
  border: 1px solid var(--akl-border);
  background: #fff;
  box-shadow: var(--akl-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.akl-landing-feature-cards article:hover {
  transform: translateY(-4px);
  box-shadow: var(--akl-shadow-md);
}

.akl-landing-feature-icon {
  border-radius: 16px;
}

.akl-landing-feature-icon.is-violet {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  box-shadow: 0 8px 20px rgba(109, 74, 255, 0.15);
}

.akl-landing-feature-icon.is-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

/* Stats */
.akl-landing-stats {
  gap: 20px;
}

.akl-landing-stats > div {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--akl-radius);
  border: 1px solid var(--akl-border);
  box-shadow: var(--akl-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.akl-landing-stats > div:hover {
  transform: translateY(-3px);
  box-shadow: var(--akl-shadow-md);
}

.akl-landing-stats strong {
  font-family: var(--akl-font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--akl-purple) 0%, var(--akl-purple-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.akl-landing-stats span {
  font-weight: 500;
  color: #6b6580;
}

/* Testimonials */
.akl-landing-testimonials blockquote {
  border-radius: var(--akl-radius);
  border: 1px solid var(--akl-border);
  background: #fff;
  box-shadow: var(--akl-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.akl-landing-testimonials blockquote::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 64px;
  line-height: 1;
  color: rgba(109, 74, 255, 0.08);
  font-family: Georgia, serif;
}

.akl-landing-testimonials blockquote:hover {
  transform: translateY(-4px);
  box-shadow: var(--akl-shadow-md);
}

.akl-landing-avatar {
  background: linear-gradient(135deg, var(--akl-purple) 0%, #8b5cf6 100%);
  box-shadow: 0 4px 12px rgba(109, 74, 255, 0.3);
}

/* Steps */
.akl-landing-steps article {
  border-radius: var(--akl-radius);
  border: 1px solid var(--akl-border);
  background: #fff;
  box-shadow: var(--akl-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.akl-landing-steps article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--akl-purple), var(--akl-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.akl-landing-steps article:hover {
  transform: translateY(-4px);
  box-shadow: var(--akl-shadow-md);
}

.akl-landing-steps article:hover::after {
  opacity: 1;
}

.akl-landing-step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--akl-purple) 0%, var(--akl-purple-deep) 100%);
  box-shadow: 0 6px 16px rgba(109, 74, 255, 0.35);
}

/* Split sections — text & visual harmony */
.akl-landing-page .akl-landing-split {
  gap: clamp(48px, 5vw, 80px);
  align-items: stretch;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.akl-landing-page .akl-landing-split.is-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.akl-landing-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 2vw, 32px) 0;
  max-width: 520px;
}

.akl-landing-split.is-reverse .akl-landing-split-copy {
  margin-left: auto;
}

.akl-landing-split-copy .akl-landing-label {
  align-self: flex-start;
  margin-bottom: 6px;
}

.akl-landing-split-copy h2 {
  font-family: var(--akl-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--akl-ink);
  margin: 10px 0 18px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
}

.akl-landing-split-copy p {
  color: #5a5470;
  font-size: 17px;
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 22px;
}

.akl-landing-split-copy .akl-landing-checklist,
.akl-landing-split-copy .akl-landing-pills {
  margin-top: 4px;
}

.akl-landing-split-copy .akl-landing-btn {
  align-self: flex-start;
  margin-top: 8px;
}

.akl-landing-split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

/* Unified visual frame for mocks & images */
.akl-landing-visual-shell {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: var(--akl-radius-lg);
  background:
    radial-gradient(ellipse 85% 55% at 72% 18%, rgba(109, 74, 255, 0.1) 0%, transparent 58%),
    linear-gradient(165deg, #ffffff 0%, #faf8ff 55%, #f5f2fc 100%);
  border: 1px solid var(--akl-border);
  box-shadow:
    var(--akl-shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.akl-landing-visual-shell::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(109, 74, 255, 0.08) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.akl-landing-visual-shell > * {
  position: relative;
  z-index: 1;
}

.akl-landing-visual-shell .akl-mock {
  background: #fff;
  border: 1px solid rgba(109, 74, 255, 0.1);
  box-shadow: 0 8px 32px rgba(26, 16, 58, 0.07);
  border-radius: calc(var(--akl-radius-lg) - 10px);
  width: 100%;
  margin: 0;
}

.akl-landing-visual-shell .akl-landing-preview .akl-mock {
  border-radius: calc(var(--akl-radius-lg) - 14px);
}

.akl-landing-visual-shell.is-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 42vw, 460px);
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(ellipse 75% 65% at 50% 42%, rgba(109, 74, 255, 0.16) 0%, transparent 62%),
    linear-gradient(165deg, #ffffff 0%, #f8f5ff 100%);
}

.akl-landing-visual-shell.is-phone .akl-landing-phone-stack {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.akl-landing-visual-shell.is-phone img {
  max-width: min(300px, 78%);
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 28px 56px rgba(109, 74, 255, 0.28));
}

.akl-landing-visual-shell.is-phone.is-dark {
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(109, 74, 255, 0.35) 0%, transparent 62%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.akl-landing-visual-shell.is-phone.is-dark img {
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.45));
}

.akl-landing-checklist i {
  color: var(--akl-purple);
}

.akl-landing-pills li {
  background: linear-gradient(135deg, rgba(109, 74, 255, 0.08) 0%, rgba(109, 74, 255, 0.04) 100%);
  border: 1px solid var(--akl-border);
}

/* Compare */
.akl-landing-compare-col {
  border-radius: var(--akl-radius-lg);
  transition: transform 0.3s ease;
}

.akl-landing-compare-col.is-old {
  background: #fff;
  border: 1px solid #e8e4f0;
  box-shadow: var(--akl-shadow-sm);
}

.akl-landing-compare-col.is-new {
  background: linear-gradient(160deg, #1a0f42 0%, #2d1a6e 50%, #3d2590 100%);
  box-shadow: var(--akl-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.akl-landing-compare-col.is-new h3 {
  color: #fff;
}

.akl-landing-compare-col.is-new i {
  color: var(--akl-mint);
}

/* Final CTA */
.akl-landing-final {
  padding: 100px 0 64px;
  background: linear-gradient(165deg, #050314 0%, #0f0828 40%, #1a0f42 100%);
  position: relative;
  overflow: hidden;
}

.akl-landing-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(109, 74, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.akl-landing-final-inner {
  position: relative;
  z-index: 2;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.akl-landing-final-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.akl-landing-final-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.akl-landing-final-visual .akl-landing-visual-shell {
  max-width: 320px;
}

.akl-landing-final-copy h2 {
  font-family: var(--akl-font-display);
  letter-spacing: -0.035em;
}

.akl-landing-final .akl-landing-btn-light {
  background: linear-gradient(135deg, #f5d061 0%, #f0c14b 100%);
  color: var(--akl-ink) !important;
  box-shadow: 0 8px 32px rgba(240, 193, 75, 0.35);
  font-weight: 700;
}

.akl-landing-final-visual img {
  filter: none;
}

/* ===== SITE FOOTER (landing) ===== */
.akl-site-footer {
  position: relative;
  padding: 80px 0 0;
  background: linear-gradient(165deg, #050314 0%, #0f0828 50%, #12082e 100%);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.akl-site-footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(109, 74, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(240, 193, 75, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.akl-site-footer .container {
  position: relative;
  z-index: 2;
}

.akl-site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.akl-site-footer-brand {
  max-width: 340px;
}

.akl-site-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.akl-site-footer-logo img {
  height: 42px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.akl-site-footer-brand p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.akl-site-footer-cta {
  margin-bottom: 24px;
  font-size: 14px !important;
  min-height: 46px !important;
  padding: 12px 24px !important;
}

.akl-site-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.akl-site-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.akl-site-footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #fff !important;
}

.akl-site-footer-col h4 {
  margin: 0 0 20px;
  font-family: var(--akl-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.akl-site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.akl-site-footer-col li + li {
  margin-top: 12px;
}

.akl-site-footer-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.akl-site-footer-col a:hover {
  color: #fff !important;
}

.akl-site-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.akl-site-footer-contact i {
  margin-top: 3px;
  color: var(--akl-gold);
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.akl-site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 32px;
}

.akl-site-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.akl-site-footer-bottom a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
}

.akl-site-footer-bottom a:hover {
  color: #fff !important;
}

.akl-site-footer-bottom ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.akl-site-footer-bottom ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5) !important;
}

.akl-site-footer-bottom ul a:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Mock import / channels polish */
.akl-landing-page .akl-mock-import-tabs span.is-active {
  background: linear-gradient(135deg, var(--akl-purple) 0%, var(--akl-purple-deep) 100%);
}

.akl-landing-page .akl-mock-import-btn {
  background: linear-gradient(135deg, var(--akl-purple) 0%, var(--akl-purple-deep) 100%);
  border-radius: 12px;
  font-family: var(--akl-font-display);
}

.akl-landing-page .akl-mock-channel {
  border-radius: 14px;
  transition: transform 0.22s ease;
}

.akl-landing-page .akl-mock-channel:hover {
  transform: scale(1.03);
}

/* ===== INNER MARKETING PAGES (about, contact, faq, blog, login…) ===== */
.akl-landing-page .akl-reimagined,
.akl-landing-page .akl-login-main {
  background: var(--akl-surface);
  padding-top: 0;
}

.akl-landing-page .akl-hero,
.akl-landing-page .akl-login-home-hero {
  position: relative;
  background: linear-gradient(165deg, #050314 0%, #0f0828 42%, #1a0f42 100%);
  color: #fff;
  padding: 132px 0 108px;
  overflow: hidden;
}

.akl-landing-page .akl-hero:before,
.akl-landing-page .akl-login-home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(109, 74, 255, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 75%, rgba(240, 193, 75, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.akl-landing-page .akl-hero:after,
.akl-landing-page .akl-login-home-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
  pointer-events: none;
}

.akl-landing-page .akl-hero .container,
.akl-landing-page .akl-login-home-hero .container {
  position: relative;
  z-index: 2;
}

.akl-landing-page .akl-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.akl-landing-page .akl-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--akl-font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.akl-landing-page .akl-hero-content h1 {
  font-family: var(--akl-font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  color: #fff;
}

.akl-landing-page .akl-hero-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
  max-width: 640px;
}

.akl-landing-page .akl-btn-primary,
.akl-landing-page .akl-login-home-submit {
  background: linear-gradient(135deg, #f5d061 0%, #f0c14b 45%, #d4a017 100%);
  color: var(--akl-ink) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(240, 193, 75, 0.35);
  font-family: var(--akl-font-display);
  font-weight: 700;
  border-radius: 999px;
}

.akl-landing-page .akl-btn-primary:hover,
.akl-landing-page .akl-login-home-submit:hover {
  background: linear-gradient(135deg, #ffe082 0%, #f5d061 50%, #f0c14b 100%);
  transform: translateY(-2px);
}

.akl-landing-page .akl-btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-family: var(--akl-font-display);
  font-weight: 600;
}

.akl-landing-page .akl-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.akl-landing-page .akl-wave,
.akl-landing-page .akl-login-home-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 64px;
  background: var(--akl-surface);
  clip-path: ellipse(75% 100% at 50% 100%);
  z-index: 1;
}

.akl-landing-page .akl-page-section {
  padding: 88px 0;
}

.akl-landing-page .akl-page-section.alt,
.akl-landing-page .akl-page-section:nth-child(even) {
  background: linear-gradient(180deg, #f5f3fa 0%, #eeebf5 50%, #f5f3fa 100%);
}

.akl-landing-page .akl-section-head h2,
.akl-landing-page .akl-section-head h3,
.akl-landing-page .akl-copy-block h2,
.akl-landing-page .akl-copy-block h3 {
  font-family: var(--akl-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--akl-ink);
}

.akl-landing-page .akl-section-head p,
.akl-landing-page .akl-copy-block p {
  color: #5a5470;
  line-height: 1.75;
}

.akl-landing-page .akl-kicker,
.akl-landing-page .akl-landing-label {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(109, 74, 255, 0.1) 0%, rgba(109, 74, 255, 0.05) 100%);
  border: 1px solid var(--akl-border-strong);
  color: var(--akl-purple-deep);
  font-family: var(--akl-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.akl-landing-page .akl-surface-card,
.akl-landing-page .akl-home-highlight-card,
.akl-landing-page .akl-feature-card,
.akl-landing-page .akl-faq-group-card,
.akl-landing-page .akl-post-card,
.akl-landing-page .akl-form-card,
.akl-landing-page .akl-benefit-card {
  border-radius: var(--akl-radius);
  border: 1px solid var(--akl-border);
  background: #fff;
  box-shadow: var(--akl-shadow-sm);
}

/* Inner pages — bottom CTA band (contact, faq, blog…) */
.akl-landing-page .akl-final-cta {
  position: relative;
  padding: 88px 0;
  background: linear-gradient(165deg, #050314 0%, #0f0828 42%, #1a0f42 100%);
  overflow: hidden;
}

.akl-landing-page .akl-final-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 20% 30%, rgba(109, 74, 255, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 85% 70%, rgba(240, 193, 75, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.akl-landing-page .akl-final-cta:after {
  display: none;
}

.akl-landing-page .akl-final-cta .container {
  position: relative;
  z-index: 2;
}

.akl-landing-page .akl-final-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
}

.akl-landing-page .akl-final-card h2 {
  font-family: var(--akl-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.12;
  color: #fff;
  margin: 0 0 14px;
}

.akl-landing-page .akl-final-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

.akl-landing-page .akl-final-card .akl-hero-actions {
  justify-content: center;
  gap: 14px;
}

.akl-landing-page .akl-final-card .akl-btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.akl-landing-page .akl-final-card .akl-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.akl-landing-page .akl-pill,
.akl-landing-page .akl-pill-row .akl-pill {
  background: linear-gradient(135deg, rgba(109, 74, 255, 0.08) 0%, rgba(109, 74, 255, 0.04) 100%);
  border: 1px solid var(--akl-border);
  color: var(--akl-purple-deep);
  font-weight: 600;
}

.akl-landing-page .akl-login-home-grid {
  max-width: 480px;
  margin: 0 auto;
}

.akl-landing-page .akl-login-home-panel {
  border-radius: var(--akl-radius-lg);
  border: 1px solid var(--akl-border);
  background: #fff;
  box-shadow: var(--akl-shadow-lg);
  padding: 36px 32px 32px;
}

.akl-landing-page .akl-login-home-panel:before {
  display: none;
}

.akl-landing-page .akl-login-home-panel-title {
  font-family: var(--akl-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--akl-ink);
}

.akl-landing-page .akl-login-home-input {
  border-radius: 12px;
  border: 1px solid var(--akl-border);
  background: #faf9fd;
}

.akl-landing-page .akl-login-home-input:focus {
  border-color: var(--akl-purple);
  box-shadow: 0 0 0 3px rgba(109, 74, 255, 0.12);
}

.akl-landing-page .akl-login-home-footer a {
  color: var(--akl-purple-deep);
  font-weight: 600;
}

.akl-landing-page .page-title {
  display: none;
}

.akl-landing-page .akl-inner-simple {
  padding: 120px 0 88px;
}

.akl-landing-page .akl-inner-simple-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--akl-radius-lg);
  border: 1px solid var(--akl-border);
  background: #fff;
  box-shadow: var(--akl-shadow-md);
}

.akl-landing-page .akl-inner-simple-card h1 {
  font-family: var(--akl-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--akl-ink);
  margin-bottom: 12px;
}

.akl-landing-page .akl-inner-simple-card p {
  color: #5a5470;
  line-height: 1.7;
  margin-bottom: 24px;
}

.akl-landing-page .akl-page-section .akl-btn-ghost,
.akl-landing-page .akl-inner-simple-card .akl-btn-ghost {
  border-color: var(--akl-purple);
  color: var(--akl-purple-deep) !important;
  background: rgba(109, 74, 255, 0.04);
}

.akl-landing-page .akl-page-section .akl-btn-ghost:hover,
.akl-landing-page .akl-inner-simple-card .akl-btn-ghost:hover {
  background: rgba(109, 74, 255, 0.1);
  border-color: var(--akl-purple-deep);
}

.akl-landing-page .scroll-top {
  background: linear-gradient(135deg, var(--akl-purple) 0%, var(--akl-purple-deep) 100%);
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 1199px) {
  .akl-landing-page .akl-mock-dashboard {
    transform: none;
  }

  .akl-landing-split.is-reverse .akl-landing-split-copy {
    margin-left: 0;
  }

  .akl-landing-split-copy {
    max-width: none;
  }

  .akl-landing-split-copy p {
    max-width: none;
  }

  .akl-landing-visual-shell {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .akl-lp-price-card.is-featured {
    transform: none;
  }

  .akl-lp-price-card.is-featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 991px) {
  .akl-site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .akl-site-footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .akl-lp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .akl-site-nav-links,
  .akl-site-nav-actions {
    display: none;
  }

  .akl-site-nav-toggle {
    display: flex;
  }

  .akl-site-nav.is-open {
    background: rgba(8, 5, 26, 0.98);
  }

  .akl-site-nav.is-open.is-scrolled {
    background: rgba(8, 5, 26, 0.98);
  }

  .akl-site-nav.is-open.is-scrolled .akl-site-nav-mobile {
    background: rgba(8, 5, 26, 0.98);
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .akl-site-nav.is-open.is-scrolled .akl-site-nav-mobile a {
    color: rgba(255, 255, 255, 0.88) !important;
  }
}

@media (max-width: 767px) {
  .akl-landing-hero {
    padding: 108px 0 0;
  }

  .akl-landing-hero-curve {
    margin-top: 48px;
  }

  .akl-landing-hero-curve svg {
    height: 48px;
  }

  .akl-landing-section {
    padding: 72px 0;
  }

  .akl-landing-section-first {
    padding-top: 32px;
  }

  .akl-site-footer-grid {
    grid-template-columns: 1fr;
  }

  .akl-site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .akl-landing-float-badge {
    top: -8px;
    right: 12px;
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .akl-landing-orb,
  .akl-landing-float-badge .pulse-dot {
    animation: none !important;
  }

  .akl-landing-page .akl-mock-dashboard,
  .akl-landing-feature-cards article,
  .akl-landing-stats > div,
  .akl-landing-testimonials blockquote,
  .akl-landing-steps article,
  .akl-landing-price-card {
    transition: none !important;
  }
}
