/* ============================================================
   Medna Tanıtım Sitesi — Modern & Premium Stil Dosyası
   ============================================================ */

:root {
  --ln-primary: #7367f0;
  --ln-primary-rgb: 115, 103, 240;
  --ln-primary-dark: #5e50ee;
  --ln-primary-light: rgba(115, 103, 240, 0.1);
  --ln-accent: #28c76f;
  --ln-accent-rgb: 40, 199, 111;
  --ln-info: #00cfe8;
  --ln-warning: #ff9f43;
  --ln-danger: #ea5455;
  --ln-dark: #ffffff; /* Redefined to white so headings pop on the dark theme */
  --ln-dark-light: #161933;
  --ln-text: #e1e3f0;
  --ln-muted: #8c90a6;
  --ln-bg: #090a14;
  --ln-bg-soft: #101224;
  --ln-bg-alt: #161933;
  --ln-border: rgba(255, 255, 255, 0.06);
  --ln-radius-sm: 8px;
  --ln-radius: 16px;
  --ln-radius-lg: 24px;
  --ln-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --ln-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --ln-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
  --ln-shadow-glow: 0 0 25px rgba(115, 103, 240, 0.25);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--ln-text);
  background: var(--ln-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
img {
  max-width: 100%;
  display: block;
}

/* Container */
.ln-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons with interactive micro-animations */
.ln-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--ln-radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.ln-btn-primary {
  background: var(--ln-primary);
  color: #fff;
  box-shadow: var(--ln-shadow-glow);
}
.ln-btn-primary:hover {
  background: var(--ln-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(115, 103, 240, 0.35);
}
.ln-btn-primary:active {
  transform: translateY(0);
}
.ln-btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}
.ln-btn-ghost:hover {
  border-color: var(--ln-primary);
  color: #fff;
  background: rgba(115, 103, 240, 0.12);
}
.ln-btn-white {
  background: #fff;
  color: #090a14;
  box-shadow: var(--ln-shadow-glow);
}
.ln-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(115, 103, 240, 0.3);
  color: var(--ln-primary-dark);
}
.ln-btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 12px;
}

/* Glassmorphism Header */
.ln-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 10, 20, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.ln-header.scrolled {
  background: rgba(9, 10, 20, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(115, 103, 240, 0.15);
}
.ln-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.ln-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  color: var(--ln-dark);
}
.ln-brand-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.ln-brand-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--ln-dark), #3a415a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ln-menu {
  display: flex;
  gap: 40px;
}
.ln-menu a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ln-muted);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.ln-menu a:hover,
.ln-menu a.active {
  color: var(--ln-primary);
}
.ln-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--ln-primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.ln-menu a:hover::after,
.ln-menu a.active::after {
  width: 100%;
}
.ln-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ln-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.ln-burger span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.ln-burger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.ln-burger.open span:nth-child(2) {
  opacity: 0;
}
.ln-burger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu */
.ln-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--ln-bg-soft);
  border-bottom: 1px solid var(--ln-border);
}
.ln-mobile-menu.open {
  max-height: 550px;
  padding: 24px 24px;
}
.ln-mobile-menu a {
  padding: 12px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--ln-text);
  border-bottom: 1px solid var(--ln-border);
}
.ln-mobile-menu a.ln-btn {
  border-bottom: none;
  width: 100%;
  margin-top: 8px;
  padding: 12px 24px;
}
.ln-mobile-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--ln-border);
  font-weight: 600;
  font-size: 16px;
  color: var(--ln-text);
}

/* Modern Hero Section */
.ln-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: 
    radial-gradient(1000px 500px at 80% -10%, rgba(var(--ln-primary-rgb), 0.12), transparent 50%),
    radial-gradient(800px 400px at 15% 90%, rgba(var(--ln-accent-rgb), 0.05), transparent 50%),
    var(--ln-bg);
}
/* Grid pattern overlay */
.ln-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(115, 103, 240, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}
.ln-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.ln-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(var(--ln-primary-rgb), 0.08);
  border: 1px solid rgba(var(--ln-primary-rgb), 0.15);
  color: var(--ln-primary);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
}
.ln-hero h1 {
  font-size: 60px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
.ln-hero h1 .grad {
  background: linear-gradient(135deg, #a496ff 0%, var(--ln-primary) 50%, #8b6eff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ln-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ln-muted);
  margin-bottom: 36px;
  max-width: 580px;
}
.ln-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ln-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  border-top: 1px solid var(--ln-border);
  padding-top: 24px;
}
.ln-hero-stats .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--ln-dark);
  letter-spacing: -1px;
}
.ln-hero-stats .lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--ln-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Premium Dashboard Mockup Graphic */
.ln-hero-visual {
  position: relative;
}
.ln-mockup {
  position: relative;
  background: #111326;
  border-radius: var(--ln-radius);
  padding: 16px;
  box-shadow: var(--ln-shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ln-mockup:hover {
  transform: translateY(-4px) scale(1.01);
}
.ln-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
}
.ln-mockup-dots {
  display: flex;
  gap: 6px;
}
.ln-mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.ln-mockup-dots span:nth-child(1) { background: #ff5f56; }
.ln-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.ln-mockup-dots span:nth-child(3) { background: #27c93f; }
.ln-mockup-address {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  height: 20px;
  margin: 0 40px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  padding-left: 12px;
}

/* Mockup Content Grid */
.ln-mockup-body {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  min-height: 280px;
}
.ln-mockup-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ln-mockup-sidebar .item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ln-mockup-sidebar .item.active {
  background: var(--ln-primary);
}
.ln-mockup-main {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}
.ln-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ln-mockup-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--ln-radius-sm);
  padding: 10px;
}
.ln-mockup-stat .lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.ln-mockup-stat .val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}
.ln-mockup-stat .progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-top: 6px;
  overflow: hidden;
}
.ln-mockup-stat .progress-fill {
  height: 100%;
  background: var(--ln-primary);
  border-radius: 10px;
}
.ln-mockup-chart-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--ln-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ln-mockup-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ln-mockup-chart-title {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.ln-mockup-chart-legend {
  display: flex;
  gap: 8px;
}
.ln-mockup-chart-dot {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
}
.ln-mockup-chart-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ln-primary);
}
.ln-mockup-chart-dot.accent::before {
  background: var(--ln-accent);
}

.ln-mockup-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  padding-top: 10px;
}
.ln-mockup-chart-bar-group {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 100%;
}
.ln-mockup-chart-bar {
  width: 8px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background: var(--ln-primary);
  min-height: 10px;
}
.ln-mockup-chart-bar.accent {
  background: var(--ln-accent);
}

/* Float badge overlays on hero graphic */
.ln-float-badge {
  position: absolute;
  background: rgba(16, 18, 36, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  transition: transform 0.3s ease;
}
.ln-float-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 103, 240, 0.3);
}
.ln-float-badge.f-1 {
  top: 15%;
  left: -40px;
}
.ln-float-badge.f-2 {
  bottom: 12%;
  right: -20px;
}
.ln-float-badge .icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ln-float-badge.f-1 .icon-box { background: var(--ln-primary); }
.ln-float-badge.f-2 .icon-box { background: var(--ln-accent); }
.ln-float-badge .text-box {
  display: flex;
  flex-direction: column;
}
.ln-float-badge .title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}
.ln-float-badge .desc {
  font-size: 11px;
  color: var(--ln-muted);
}

/* Sections Global */
.ln-section {
  padding: 110px 0;
  position: relative;
}
.ln-section.soft {
  background: var(--ln-bg-soft);
}
.ln-section.alt {
  background: var(--ln-bg-alt);
}
.ln-sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.ln-sec-head .kick {
  color: var(--ln-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(115, 103, 240, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}
.ln-sec-head h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.25px;
  color: var(--ln-dark);
  margin: 16px 0 16px;
  line-height: 1.2;
}
.ln-sec-head p {
  font-size: 17px;
  color: var(--ln-muted);
}

/* Professional Features Grid */
.ln-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ln-feature {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--ln-radius);
  padding: 36px 32px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ln-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ln-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.ln-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(115, 103, 240, 0.15);
  border-color: rgba(115, 103, 240, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.ln-feature:hover::before {
  transform: scaleX(1);
}
.ln-feature .ic-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ln-primary);
  margin-bottom: 24px;
  background: rgba(var(--ln-primary-rgb), 0.05);
  transition: all 0.3s ease;
}
.ln-feature:hover .ic-box {
  background: var(--ln-primary);
  color: #fff;
  transform: scale(1.05);
}
.ln-feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ln-dark);
  margin-bottom: 12px;
  letter-spacing: -0.25px;
}
.ln-feature p {
  color: var(--ln-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Interactive Product Feature Showcase (New Section!) */
.ln-showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ln-showcase-tab {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ln-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.ln-showcase-tab:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}
.ln-showcase-tab.active {
  background: var(--ln-primary);
  color: #fff;
  border-color: var(--ln-primary);
  box-shadow: var(--ln-shadow-glow);
}
.ln-showcase-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--ln-radius-lg);
  padding: 48px;
  box-shadow: var(--ln-shadow);
  display: none;
}
.ln-showcase-content.active {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  animation: fadeIn 0.4s ease;
}
.ln-showcase-text {
  display: flex;
  flex-direction: column;
}
.ln-showcase-text h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ln-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.ln-showcase-text p {
  font-size: 16px;
  color: var(--ln-muted);
  margin-bottom: 24px;
}
.ln-showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ln-showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ln-text);
  font-weight: 600;
}
.ln-showcase-list li svg {
  color: var(--ln-accent);
  flex-shrink: 0;
}
.ln-showcase-visual {
  background: var(--ln-bg-alt);
  border-radius: var(--ln-radius);
  padding: 24px;
  border: 1px solid var(--ln-border);
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* modern CTA block */
.ln-cta {
  background: linear-gradient(135deg, #101224, #161933);
  border-radius: var(--ln-radius-lg);
  padding: 80px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 20, 36, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ln-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(115, 103, 240, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.ln-cta h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.ln-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Modernized Pricing Cards */
.ln-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.ln-pricing-toggle span {
  font-size: 15px;
  font-weight: 600;
  color: var(--ln-muted);
}
.ln-pricing-toggle span.active {
  color: #fff;
}
.ln-pricing-switch {
  position: relative;
  width: 50px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.ln-pricing-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.ln-pricing-switch.active {
  background: var(--ln-primary);
}
.ln-pricing-switch.active::after {
  transform: translateX(22px);
}
.ln-discount-badge {
  background: var(--ln-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.ln-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.ln-plan {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--ln-radius);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.ln-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(115, 103, 240, 0.15);
  border-color: rgba(115, 103, 240, 0.3);
}
.ln-plan.featured {
  background: rgba(115, 103, 240, 0.03);
  border-color: var(--ln-primary);
  box-shadow: 0 0 40px rgba(115, 103, 240, 0.15);
  transform: scale(1.02);
}
.ln-plan.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 0 50px rgba(115, 103, 240, 0.25);
}
.ln-plan-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ln-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(115, 103, 240, 0.25);
}
.ln-plan h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ln-dark);
}
.ln-plan .desc {
  color: var(--ln-muted);
  font-size: 14px;
  margin: 8px 0 24px;
}
.ln-plan .price {
  font-size: 48px;
  font-weight: 900;
  color: var(--ln-dark);
  letter-spacing: -1.5px;
  line-height: 1;
}
.ln-plan .price small {
  font-size: 16px;
  font-weight: 600;
  color: var(--ln-muted);
}
.ln-plan .price-note {
  font-size: 13px;
  color: var(--ln-muted);
  margin-top: 8px;
}
.ln-plan ul {
  list-style: none;
  margin: 32px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--ln-border);
  padding-top: 24px;
}
.ln-plan li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ln-text);
}
.ln-plan li svg {
  color: var(--ln-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.ln-plan li.off {
  color: var(--ln-muted);
  opacity: 0.6;
}
.ln-plan li.off svg {
  color: var(--ln-muted);
}

/* FAQ Accordion Look */
.ln-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ln-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--ln-radius-sm);
  padding: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.ln-faq-item:hover {
  border-color: rgba(115, 103, 240, 0.3);
  background: rgba(255, 255, 255, 0.03);
}
.ln-faq-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ln-dark);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ln-faq-item h4::after {
  content: "+";
  font-size: 20px;
  color: var(--ln-muted);
  font-weight: 500;
  transition: transform 0.2s ease;
}
.ln-faq-item.active h4::after {
  transform: rotate(45deg);
  color: var(--ln-primary);
}
.ln-faq-item p {
  color: var(--ln-muted);
  font-size: 15px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), margin 0.3s ease;
}
.ln-faq-item.active p {
  max-height: 200px;
  margin-top: 12px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), margin 0.3s ease;
}

/* Professional Contact Layout */
.ln-contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.ln-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ln-contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--ln-radius);
  padding: 32px;
  box-shadow: var(--ln-shadow);
}
.ln-contact-info .item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}
.ln-contact-info .item:last-child {
  margin-bottom: 0;
}
.ln-contact-info .ic-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ln-primary);
  flex-shrink: 0;
  background: rgba(var(--ln-primary-rgb), 0.05);
}
.ln-contact-info .t {
  font-weight: 700;
  color: var(--ln-dark);
  font-size: 16px;
}
.ln-contact-info .s {
  color: var(--ln-muted);
  font-size: 15px;
  margin-top: 2px;
}
.ln-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--ln-radius);
  padding: 44px;
  box-shadow: var(--ln-shadow-lg);
}
.ln-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ln-field {
  margin-bottom: 24px;
}
.ln-field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ln-dark);
  margin-bottom: 8px;
}
.ln-field label .req {
  color: var(--ln-danger);
}
.ln-field input,
.ln-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.03);
}
.ln-field input:focus,
.ln-field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--ln-primary);
  box-shadow: 0 0 0 4px rgba(var(--ln-primary-rgb), 0.15);
}
.ln-field textarea {
  resize: vertical;
  min-height: 140px;
}
.ln-field .err {
  color: var(--ln-danger);
  font-size: 13px;
  margin-top: 6px;
  display: block;
  font-weight: 500;
}
.ln-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ln-alert {
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.ln-alert-success {
  background: rgba(var(--ln-accent-rgb), 0.1);
  color: #1f9d57;
  border: 1px solid rgba(var(--ln-accent-rgb), 0.2);
}
.ln-alert-error {
  background: rgba(234, 84, 85, 0.1);
  color: var(--ln-danger);
  border: 1px solid rgba(234, 84, 85, 0.2);
}

/* Elegant Subpage Headers */
.ln-page-head {
  padding: 100px 0 60px;
  text-align: center;
  background: radial-gradient(900px 360px at 50% -20%, rgba(var(--ln-primary-rgb), 0.12), transparent 60%);
  position: relative;
}
.ln-page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(115, 103, 240, 0.05) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.ln-page-head h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--ln-dark);
  margin-bottom: 16px;
}
.ln-page-head p {
  font-size: 18px;
  color: var(--ln-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Premium Footer Design with Glowing Dark Theme */
.ln-footer {
  background: radial-gradient(circle at 50% 0%, #171b30 0%, #0a0b14 100%);
  color: #a1a5b7;
  padding: 90px 0 0;
  border-top: 1px solid rgba(115, 103, 240, 0.15);
  position: relative;
  overflow: hidden;
}
.ln-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 103, 240, 0.5), transparent);
}
.ln-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 70px;
}
.ln-footer .ln-brand {
  color: #fff;
  margin-bottom: 24px;
}
.ln-footer .ln-brand-text {
  background: linear-gradient(135deg, #ffffff, #a1a5b7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.ln-footer-brand p {
  font-size: 14.5px;
  color: #8c90a6;
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.ln-footer-socials {
  display: flex;
  gap: 12px;
}
.ln-footer-socials .social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a1a5b7;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.ln-footer-socials .social-link:hover {
  background: rgba(115, 103, 240, 0.1);
  border-color: rgba(115, 103, 240, 0.4);
  color: #fff;
  transform: translateY(-3px);
}
.ln-footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.ln-footer-col a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: #8c90a6;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.ln-footer-col a:hover {
  color: #fff;
  transform: translateX(6px);
}
.ln-footer-contact-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: #8c90a6;
  font-size: 14.5px;
  font-weight: 500;
}
.ln-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 0;
  font-size: 14px;
  color: #727686;
}
.ln-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.ln-footer-bottom-links {
  display: flex;
  gap: 24px;
}
.ln-footer-bottom-links a {
  color: #727686;
  font-weight: 500;
  transition: color 0.2s ease;
}
.ln-footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .ln-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .ln-hero h1 {
    font-size: 48px;
  }
  .ln-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .ln-hero-cta {
    justify-content: center;
  }
  .ln-hero-stats {
    justify-content: center;
  }
  .ln-float-badge {
    display: none; /* Hide floating badges on smaller viewports to prevent clutter */
  }
  .ln-features,
  .ln-pricing {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ln-showcase-content.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ln-showcase-visual {
    order: -1;
  }
  .ln-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ln-plan.featured {
    transform: none;
  }
  .ln-plan.featured:hover {
    transform: translateY(-8px);
  }
  .ln-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .ln-menu {
    display: none;
  }
  .ln-burger {
    display: flex;
  }
  .ln-mobile-menu {
    display: flex;
  }
  .ln-actions .ln-btn,
  .ln-actions .ln-theme-toggle {
    display: none;
  }
  .ln-hero h1 {
    font-size: 38px;
  }
  .ln-hero p {
    font-size: 16px;
  }
  .ln-section {
    padding: 70px 0;
  }
  .ln-features,
  .ln-pricing {
    grid-template-columns: 1fr;
  }
  .ln-sec-head h2,
  .ln-page-head h1 {
    font-size: 32px;
  }
  .ln-cta {
    padding: 48px 24px;
  }
  .ln-cta h2 {
    font-size: 28px;
  }
  .ln-form {
    padding: 24px;
  }
  .ln-form .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ln-hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .ln-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ln-footer-bottom .ln-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Theme Toggle Button Styles */
.ln-theme-toggle {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.ln-theme-toggle:hover {
  background: rgba(115, 103, 240, 0.1);
  border-color: rgba(115, 103, 240, 0.3);
  color: var(--ln-primary);
  transform: scale(1.05);
}
.ln-theme-toggle .sun-icon {
  display: block;
}
.ln-theme-toggle .moon-icon {
  display: none;
}

/* Light Theme overrides using html.light-theme / .light-theme selector */
.light-theme {
  --ln-dark: #0f1424;
  --ln-dark-light: #1e2436;
  --ln-text: #2f2b3d;
  --ln-muted: #6e6b7b;
  --ln-bg: #fcfcff;
  --ln-bg-soft: #ffffff;
  --ln-bg-alt: #f4f5fa;
  --ln-border: #e9eaf0;
  --ln-shadow-sm: 0 2px 8px rgba(115, 103, 240, 0.04);
  --ln-shadow: 0 10px 30px rgba(34, 41, 47, 0.05);
  --ln-shadow-lg: 0 20px 40px rgba(115, 103, 240, 0.1);
  --ln-shadow-glow: 0 15px 35px rgba(115, 103, 240, 0.25);
}

.light-theme .ln-theme-toggle {
  background: #f4f5fa;
  border-color: #e9eaf0;
  color: #2f2b3d;
}
.light-theme .ln-theme-toggle:hover {
  background: rgba(115, 103, 240, 0.05);
  border-color: rgba(115, 103, 240, 0.2);
  color: var(--ln-primary);
}
.light-theme .ln-theme-toggle .sun-icon {
  display: none;
}
.light-theme .ln-theme-toggle .moon-icon {
  display: block;
}

.light-theme .ln-header {
  background: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(233, 234, 240, 0.5);
}
.light-theme .ln-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--ln-border);
  box-shadow: 0 10px 30px rgba(34, 41, 47, 0.04);
}
.light-theme .ln-burger span {
  background: var(--ln-dark);
}
.light-theme .ln-mobile-menu {
  background: #fff;
}
.light-theme .ln-btn-ghost {
  background: transparent;
  color: var(--ln-text);
  border-color: var(--ln-border);
}
.light-theme .ln-btn-ghost:hover {
  border-color: var(--ln-primary);
  color: var(--ln-primary);
  background: rgba(115, 103, 240, 0.04);
}
.light-theme .ln-brand-text {
  background: linear-gradient(135deg, var(--ln-dark), #3a415a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.light-theme .ln-float-badge {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--ln-border);
  box-shadow: var(--ln-shadow);
}
.light-theme .ln-float-badge .title {
  color: var(--ln-dark);
}
.light-theme .ln-hero h1 {
  color: var(--ln-dark);
}
.light-theme .ln-hero h1 .grad {
  background: linear-gradient(135deg, var(--ln-primary), #4839eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.light-theme .ln-feature {
  background: #fff;
  border-color: var(--ln-border);
}
.light-theme .ln-feature:hover {
  background: #fff;
  border-color: rgba(115, 103, 240, 0.15);
  box-shadow: var(--ln-shadow-lg);
}
.light-theme .ln-showcase-tab {
  background: #fff;
  border-color: var(--ln-border);
}
.light-theme .ln-showcase-tab:hover {
  color: var(--ln-primary);
  border-color: rgba(115, 103, 240, 0.3);
  background: rgba(115, 103, 240, 0.04);
}
.light-theme .ln-showcase-tab.active {
  background: var(--ln-primary);
  color: #fff;
}
.light-theme .ln-showcase-content {
  background: #fff;
  border-color: var(--ln-border);
}
.light-theme .ln-plan {
  background: #fff;
  border-color: var(--ln-border);
}
.light-theme .ln-plan:hover {
  border-color: rgba(115, 103, 240, 0.15);
  box-shadow: var(--ln-shadow-lg);
}
.light-theme .ln-plan.featured {
  background: #fff;
  border-color: var(--ln-primary);
  box-shadow: var(--ln-shadow-lg);
}
.light-theme .ln-faq-item {
  background: #fff;
  border-color: var(--ln-border);
}
.light-theme .ln-faq-item:hover {
  border-color: rgba(115, 103, 240, 0.3);
  box-shadow: var(--ln-shadow-sm);
}
.light-theme .ln-contact-card {
  background: #fff;
  border-color: var(--ln-border);
  box-shadow: var(--ln-shadow);
}
.light-theme .ln-form {
  background: #fff;
  border-color: var(--ln-border);
  box-shadow: var(--ln-shadow-lg);
}
.light-theme .ln-field input,
.light-theme .ln-field textarea {
  background: var(--ln-bg-soft);
  border-color: var(--ln-border);
  color: var(--ln-text);
}
.light-theme .ln-field input:focus,
.light-theme .ln-field textarea:focus {
  background: #fff;
  border-color: var(--ln-primary);
  box-shadow: 0 0 0 4px rgba(var(--ln-primary-rgb), 0.12);
}
.light-theme .ln-mockup {
  background: #0f1424;
}
.light-theme .ln-cta {
  background: linear-gradient(135deg, #0f1424, #1e2436);
}
