/* =====================================================
   MYHANE — Premium Landing Page CSS
   Modern SaaS · Türk Tech Karakteri · Yatırımcı-Hazır
   ===================================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* === BRAND COLORS === */
  --l-ink: #0A0E27;
  --l-ink-soft: #131836;
  --l-ink-light: #1E2547;

  --l-accent: #4F7CFF;
  --l-accent-hover: #3B66E8;
  --l-accent-soft: #EEF3FF;
  --l-accent-glow: rgba(79, 124, 255, 0.35);

  --l-amber: #FFB547;
  --l-amber-soft: #FFF6E5;

  --l-violet: #8B5CF6;
  --l-violet-soft: #F3EEFF;

  --l-emerald: #10B981;
  --l-emerald-soft: #ECFDF5;

  --l-coral: #FB7185;
  --l-coral-soft: #FFF1F2;

  /* === SURFACES === */
  --l-bg: #FFFFFF;
  --l-bg-soft: #F8FAFC;
  --l-bg-mute: #F1F5F9;
  --l-surface: #FFFFFF;

  /* === TEXT === */
  --l-text: #0F172A;
  --l-text-muted: #475569;
  --l-text-light: #94A3B8;
  --l-text-dim: #CBD5E1;

  /* === BORDERS === */
  --l-border: #E2E8F0;
  --l-border-strong: #CBD5E1;

  /* === RADII === */
  --l-r-sm: 8px;
  --l-r-md: 12px;
  --l-r-lg: 18px;
  --l-r-xl: 24px;
  --l-r-2xl: 32px;
  --l-r-pill: 999px;

  /* === SHADOWS === */
  --l-shadow-xs: 0 1px 2px rgba(10, 14, 39, 0.04);
  --l-shadow-sm: 0 2px 8px rgba(10, 14, 39, 0.06);
  --l-shadow-md: 0 8px 24px rgba(10, 14, 39, 0.08);
  --l-shadow-lg: 0 20px 48px rgba(10, 14, 39, 0.12);
  --l-shadow-xl: 0 32px 80px rgba(10, 14, 39, 0.18);
  --l-shadow-glow: 0 20px 60px var(--l-accent-glow);

  /* === GRADIENTS === */
  --l-grad-brand: linear-gradient(135deg, #4F7CFF 0%, #8B5CF6 100%);
  --l-grad-brand-soft: linear-gradient(135deg, #EEF3FF 0%, #F3EEFF 100%);
  --l-grad-amber: linear-gradient(135deg, #FFB547 0%, #FB7185 100%);
  --l-grad-dark: linear-gradient(180deg, #0A0E27 0%, #131836 100%);
  --l-grad-mesh: radial-gradient(at 0% 0%, rgba(79, 124, 255, 0.18) 0px, transparent 50%),
                 radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
                 radial-gradient(at 50% 100%, rgba(255, 181, 71, 0.12) 0px, transparent 50%);

  /* === TYPOGRAPHY === */
  --l-font-display: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --l-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --l-font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* === LAYOUT === */
  --l-container: 1240px;
  --l-header-h: 72px;
  --l-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --l-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--l-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--l-text);
  background: var(--l-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection {
  background: var(--l-accent);
  color: white;
}

/* === LAYOUT === */
.l-container {
  max-width: var(--l-container);
  margin: 0 auto;
  padding: 0 28px;
}

/* === TYPOGRAPHY === */
.l-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--l-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--l-accent);
  margin-bottom: 16px;
}

.l-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.l-accent {
  background: var(--l-grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.l-accent-amber {
  background: var(--l-grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === HEADER === */
.l-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  z-index: 100;
  transition: background 0.3s var(--l-ease);
}

.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--l-header-h);
}

.l-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--l-font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--l-ink);
}

.l-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--l-grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--l-accent-glow);
  position: relative;
  overflow: hidden;
}

.l-logo-mark svg {
  width: 18px;
  height: 18px;
  color: white;
}

.l-logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%);
}

.l-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.l-nav-link {
  position: relative;
  padding: 9px 16px;
  border-radius: var(--l-r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--l-text-muted);
  transition: color 0.2s var(--l-ease);
}

.l-nav-link:hover { color: var(--l-ink); }

.l-nav-link.active { color: var(--l-ink); }

.l-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--l-grad-brand);
  border-radius: 2px;
}

.l-nav-cta { margin-left: 12px; }

.l-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--l-border);
  border-radius: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.l-menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--l-ink);
  transition: all 0.3s var(--l-ease);
  border-radius: 2px;
}

/* === BUTTONS === */
.l-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--l-r-md);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s var(--l-ease);
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.l-btn-primary {
  background: var(--l-ink);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 2px rgba(10, 14, 39, 0.2),
    0 4px 16px rgba(10, 14, 39, 0.18);
}

.l-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 124, 255, 0.3), transparent);
  transition: left 0.6s var(--l-ease);
}

.l-btn-primary:hover {
  background: var(--l-ink-soft);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 12px rgba(10, 14, 39, 0.3),
    0 12px 28px rgba(10, 14, 39, 0.25);
}

.l-btn-primary:hover::before { left: 100%; }

.l-btn-accent {
  background: var(--l-grad-brand);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 16px var(--l-accent-glow);
}

.l-btn-accent:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 24px var(--l-accent-glow);
}

.l-btn-secondary {
  background: white;
  color: var(--l-ink);
  border-color: var(--l-border);
}

.l-btn-secondary:hover {
  border-color: var(--l-ink);
  background: var(--l-bg-soft);
}

.l-btn-ghost {
  background: transparent;
  color: var(--l-text);
}

.l-btn-ghost:hover {
  background: var(--l-bg-mute);
  color: var(--l-ink);
}

.l-btn-lg {
  padding: 16px 28px;
  font-size: 15px;
  border-radius: 14px;
}

.l-btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 10px;
}

.l-btn-arrow {
  transition: transform 0.2s var(--l-ease);
  display: inline-block;
}

.l-btn:hover .l-btn-arrow { transform: translateX(3px); }

/* === BADGES === */
.l-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--l-text);
  margin-bottom: 24px;
  box-shadow: var(--l-shadow-sm);
}

.l-badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--l-emerald);
  position: relative;
  flex-shrink: 0;
}

.l-badge-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--l-emerald);
  opacity: 0.4;
  animation: l-pulse 2s ease-in-out infinite;
}

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

/* === HERO === */
.l-hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background: var(--l-bg);
}

.l-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.l-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--l-grad-mesh);
  opacity: 0.7;
}

.l-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.l-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.l-hero-title {
  font-family: var(--l-font-display);
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--l-ink);
  margin-bottom: 24px;
}

.l-hero-title .l-accent { font-weight: 700; }

.l-hero-lead {
  font-size: 18px;
  color: var(--l-text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
  letter-spacing: -0.01em;
}

.l-hero-lead strong { color: var(--l-ink); font-weight: 600; }

.l-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.l-hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--l-text-muted);
}

.l-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.l-hero-trust svg {
  width: 14px;
  height: 14px;
  color: var(--l-emerald);
  flex-shrink: 0;
}

/* === HERO MOCKUP === */
.l-hero-visual {
  position: relative;
  perspective: 1800px;
}

.l-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse at center, var(--l-accent-glow) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.l-mockup {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 14px;
  box-shadow:
    0 1px 3px rgba(10, 14, 39, 0.08),
    0 24px 48px -8px rgba(10, 14, 39, 0.18),
    0 48px 96px -24px rgba(79, 124, 255, 0.25);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--l-ease);
  border: 1px solid var(--l-border);
}

.l-mockup:hover { transform: rotateY(-2deg) rotateX(1deg); }

.l-mockup-bar {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--l-border);
}

.l-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.l-dot.red { background: linear-gradient(135deg, #FF5F57, #FF3B30); }
.l-dot.yellow { background: linear-gradient(135deg, #FFBD2E, #FF9F0A); }
.l-dot.green { background: linear-gradient(135deg, #28CA42, #34C759); }

.l-mockup-url {
  margin-left: 12px;
  flex: 1;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 8px;
  padding: 5px 12px;
  font-family: var(--l-font-mono);
  font-size: 11px;
  color: var(--l-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.l-mockup-url svg { width: 11px; height: 11px; color: var(--l-emerald); }

.l-mockup-body {
  background: linear-gradient(135deg, #FAFBFF 0%, #F0F4FF 100%);
  display: grid;
  grid-template-columns: 56px 1fr 220px;
  height: 380px;
}

/* Sidebar */
.l-mb-sidebar {
  background: var(--l-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 8px;
}

.l-mb-sb-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--l-grad-brand);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--l-font-display);
  font-size: 14px;
  font-weight: 700;
}

.l-mb-sb-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s var(--l-ease);
  cursor: pointer;
}

.l-mb-sb-icon.active {
  background: rgba(79, 124, 255, 0.2);
  color: white;
}

.l-mb-sb-icon svg { width: 16px; height: 16px; }

/* Main */
.l-mb-main {
  padding: 18px 20px;
  overflow: hidden;
  position: relative;
}

.l-mb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.l-mb-h-title {
  font-family: var(--l-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--l-ink);
}

.l-mb-h-meta {
  font-size: 10px;
  color: var(--l-text-muted);
}

.l-mb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.l-mb-tile {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--l-ease);
}

.l-mb-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--l-shadow-sm);
}

.l-mb-tile-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--tile-bg, var(--l-accent-soft));
  color: var(--tile-color, var(--l-accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-mb-tile-icon svg { width: 16px; height: 16px; }

.l-mb-tile-label {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--l-ink);
  text-align: center;
  letter-spacing: -0.01em;
}

.l-mb-tile-meta {
  font-size: 8px;
  color: var(--l-text-light);
  font-family: var(--l-font-mono);
}

/* Right panel */
.l-mb-right {
  background: white;
  border-left: 1px solid var(--l-border);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.l-mb-r-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--l-border);
}

.l-mb-r-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--l-grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.l-mb-r-avatar svg { width: 12px; height: 12px; }

.l-mb-r-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--l-ink);
}

.l-mb-r-status {
  font-size: 9px;
  color: var(--l-emerald);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.l-mb-r-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--l-emerald);
  box-shadow: 0 0 6px var(--l-emerald);
}

.l-mb-msg {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.45;
  max-width: 90%;
}

.l-mb-msg.user {
  background: var(--l-accent-soft);
  color: var(--l-ink);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.l-mb-msg.ai {
  background: var(--l-bg-mute);
  color: var(--l-text);
  border-bottom-left-radius: 2px;
}

.l-mb-typing {
  display: flex;
  gap: 3px;
  padding: 8px 10px;
  background: var(--l-bg-mute);
  border-radius: 10px;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.l-mb-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--l-text-light);
  animation: l-typing 1.4s ease-in-out infinite;
}

.l-mb-typing span:nth-child(2) { animation-delay: 0.2s; }
.l-mb-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes l-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Floating cards */
.l-float-card {
  position: absolute;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--l-shadow-lg);
  z-index: 2;
  animation: l-float 6s ease-in-out infinite;
}

.l-float-card-1 {
  bottom: -10px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: 0s;
}

.l-float-card-2 {
  top: -16px;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes l-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.l-fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--l-emerald-soft);
  color: var(--l-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.l-fc-icon svg { width: 16px; height: 16px; }

.l-fc-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--l-ink);
  line-height: 1.2;
}

.l-fc-meta {
  font-size: 9.5px;
  color: var(--l-text-muted);
  margin-top: 2px;
}

.l-fc2-stat {
  font-family: var(--l-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--l-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.l-fc2-label {
  font-size: 10px;
  color: var(--l-text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.l-fc2-trend {
  color: var(--l-emerald);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* === STATS BAR === */
.l-stats-bar {
  background: var(--l-ink);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.l-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(79, 124, 255, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.12), transparent 50%);
}

.l-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.l-stat {
  position: relative;
  padding: 8px 16px;
}

.l-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.l-stat-value {
  font-family: var(--l-font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.l-stat-label {
  font-size: 13px;
  color: var(--l-text-dim);
  font-weight: 500;
}

/* === SECTIONS === */
.l-section {
  padding: 110px 0;
  position: relative;
}

.l-section-alt {
  background: var(--l-bg-soft);
}

.l-section-dark {
  background: var(--l-ink);
  color: white;
}

.l-section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}

.l-section-header h2 {
  font-family: var(--l-font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--l-ink);
  margin-bottom: 16px;
}

.l-section-dark .l-section-header h2 { color: white; }

.l-section-header p {
  font-size: 17px;
  color: var(--l-text-muted);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.l-section-dark .l-section-header p { color: var(--l-text-dim); }

/* === WHY CARDS === */
.l-whys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.l-why-card {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-xl);
  padding: 36px 32px;
  transition: all 0.4s var(--l-ease);
  position: relative;
  overflow: hidden;
}

.l-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--why-grad, var(--l-grad-brand));
  opacity: 0;
  transition: opacity 0.4s var(--l-ease);
}

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

.l-why-card:hover::before { opacity: 1; }

.l-why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--l-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--why-bg, var(--l-accent-soft));
  color: var(--why-color, var(--l-accent));
}

.l-why-icon svg { width: 26px; height: 26px; }

.l-why-card h3 {
  font-family: var(--l-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.l-why-card > p {
  color: var(--l-text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
  font-size: 15px;
}

.l-why-card ul {
  list-style: none;
  border-top: 1px solid var(--l-border);
  padding-top: 18px;
}

.l-why-card li {
  padding: 6px 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--l-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.l-why-card li svg {
  width: 14px;
  height: 14px;
  color: var(--why-color, var(--l-accent));
  flex-shrink: 0;
}

/* === FEATURES GRID === */
.l-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.l-feat-card {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 26px 24px;
  transition: all 0.3s var(--l-ease);
  position: relative;
  overflow: hidden;
}

.l-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c, var(--l-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--l-ease);
}

.l-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--l-shadow-md);
  border-color: transparent;
}

.l-feat-card:hover::before { transform: scaleX(1); }

.l-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--c, var(--l-accent)) 12%, white);
  color: var(--c, var(--l-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.l-feat-icon svg { width: 22px; height: 22px; }

.l-feat-card h4 {
  font-family: var(--l-font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.l-feat-card p {
  font-size: 13.5px;
  color: var(--l-text-muted);
  line-height: 1.6;
}

/* === AI GRID === */
.l-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.l-ai-card {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--l-ease);
}

.l-ai-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--l-violet-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s var(--l-ease);
}

.l-ai-card:hover {
  transform: translateY(-4px);
  border-color: var(--l-violet);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.l-ai-card:hover::before { opacity: 1; }

.l-ai-card > * { position: relative; z-index: 1; }

.l-ai-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--l-violet-soft);
  color: var(--l-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.l-ai-icon svg { width: 24px; height: 24px; }

.l-ai-card h4 {
  font-family: var(--l-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.l-ai-card > p {
  font-size: 14px;
  color: var(--l-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.l-ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--l-violet-soft);
  color: var(--l-violet);
  padding: 4px 10px;
  border-radius: var(--l-r-pill);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--l-font-mono);
  letter-spacing: 0.02em;
}

/* === SECTORS PREVIEW === */
.l-sectors-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.l-sector-card {
  display: block;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 28px 24px;
  text-align: left;
  transition: all 0.3s var(--l-ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.l-sector-card-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 18px;
  color: var(--l-text-light);
  transition: all 0.3s var(--l-ease);
}

.l-sector-card:hover {
  transform: translateY(-4px);
  border-color: var(--l-ink);
  box-shadow: var(--l-shadow-md);
}

.l-sector-card:hover .l-sector-card-arrow {
  color: var(--l-accent);
  transform: translateX(4px);
}

.l-sector-icon {
  font-size: 36px;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(10, 14, 39, 0.1));
}

.l-sector-card h4 {
  font-family: var(--l-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.l-sector-card p {
  font-size: 13.5px;
  color: var(--l-text-muted);
  line-height: 1.5;
}

/* === STEPS === */
.l-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.l-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--l-border) 20%, var(--l-border) 80%, transparent);
  z-index: 0;
}

.l-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.l-step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: white;
  border: 2px solid var(--l-border);
  color: var(--l-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--l-font-display);
  font-size: 24px;
  font-weight: 700;
}

.l-step:nth-child(1) .l-step-num {
  background: var(--l-grad-brand);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px var(--l-accent-glow);
}

.l-step:nth-child(2) .l-step-num {
  background: var(--l-amber);
  border-color: transparent;
  color: var(--l-ink);
  box-shadow: 0 8px 24px rgba(255, 181, 71, 0.35);
}

.l-step:nth-child(3) .l-step-num {
  background: var(--l-emerald);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.l-step h3 {
  font-family: var(--l-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.l-step p {
  color: var(--l-text-muted);
  line-height: 1.65;
  font-size: 14.5px;
  max-width: 320px;
  margin: 0 auto;
}

/* === CTA SECTION === */
.l-cta-section {
  padding: 80px 0;
  background: var(--l-bg);
}

.l-cta-box {
  position: relative;
  background: var(--l-ink);
  border-radius: var(--l-r-2xl);
  padding: 80px 48px;
  text-align: center;
  color: white;
  overflow: hidden;
  border: 1px solid var(--l-ink-light);
}

.l-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(79, 124, 255, 0.3), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(139, 92, 246, 0.25), transparent 50%);
}

.l-cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.l-cta-box > * { position: relative; z-index: 1; }

.l-cta-box h2 {
  font-family: var(--l-font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  color: white;
}

.l-cta-box p {
  font-size: 18px;
  color: var(--l-text-dim);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.l-cta-box .l-btn-primary {
  background: white;
  color: var(--l-ink);
  border-color: white;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.l-cta-box .l-btn-primary:hover {
  background: var(--l-bg-mute);
  transform: translateY(-1px);
}

.l-cta-box .l-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
}

.l-cta-box .l-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.l-cta-features {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--l-text-dim);
}

.l-cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.l-cta-features svg {
  width: 14px;
  height: 14px;
  color: var(--l-emerald);
}

/* === FOOTER === */
.l-footer {
  background: var(--l-ink);
  color: var(--l-text-dim);
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}

.l-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 124, 255, 0.3), transparent);
}

.l-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.l-footer-brand .l-logo {
  color: white;
  margin-bottom: 18px;
}

.l-footer-brand p {
  color: var(--l-text-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 20px;
}

.l-footer-col h4 {
  color: white;
  font-family: var(--l-font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.l-footer-col a {
  display: block;
  color: var(--l-text-dim);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s var(--l-ease);
}

.l-footer-col a:hover { color: white; }

.l-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--l-text-light);
  flex-wrap: wrap;
  gap: 12px;
}

.l-footer-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--l-text-dim);
}

/* === PAGE HERO === */
.l-page-hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--l-bg);
}

.l-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--l-grad-mesh);
  opacity: 0.5;
}

.l-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center top, black 20%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 20%, transparent 60%);
}

.l-page-hero > * { position: relative; z-index: 1; }

.l-page-hero h1 {
  font-family: var(--l-font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--l-ink);
  margin-bottom: 18px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.l-page-hero p {
  font-size: 18px;
  color: var(--l-text-muted);
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

/* === FEATURES PAGE === */
.l-feature-block {
  padding: 90px 0;
}

.l-feature-alt { background: var(--l-bg-soft); }

.l-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.l-feature-split.reverse .l-feature-text { order: 2; }

.l-feature-text h2 {
  font-family: var(--l-font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--l-ink);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.l-feature-text > p {
  font-size: 16.5px;
  color: var(--l-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.l-feature-list {
  list-style: none;
}

.l-feature-list li {
  padding: 12px 0;
  padding-left: 36px;
  position: relative;
  color: var(--l-text);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--l-border);
}

.l-feature-list li:last-child { border-bottom: none; }

.l-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #4F7CFF;
  background-image:
    linear-gradient(135deg, #4F7CFF 0%, #8B5CF6 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 100% 100%, 12px 12px;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  box-shadow: 0 4px 8px var(--l-accent-glow);
}

.l-feature-list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.l-feature-list li strong {
  color: var(--l-ink);
  font-weight: 600;
}

.l-feature-visual {
  aspect-ratio: 4 / 3.4;
  background: var(--visual-bg, var(--l-bg-soft));
  border-radius: var(--l-r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--l-border);
  box-shadow: var(--l-shadow-lg);
}

/* Mini features */
.l-mini-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.l-mini-feat {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-md);
  padding: 24px 20px;
  text-align: left;
  transition: all 0.3s var(--l-ease);
}

.l-mini-feat:hover {
  transform: translateY(-2px);
  box-shadow: var(--l-shadow-md);
  border-color: var(--l-ink);
}

.l-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--l-accent-soft);
  color: var(--l-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.l-mini-icon svg { width: 18px; height: 18px; }

.l-mini-feat h4 {
  font-family: var(--l-font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--l-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.l-mini-feat p {
  font-size: 12.5px;
  color: var(--l-text-muted);
  line-height: 1.55;
}

/* === SECTORS PAGE === */
.l-sector-nav-section {
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--l-border);
  position: sticky;
  top: var(--l-header-h);
  z-index: 50;
}

.l-sector-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.l-sector-nav a {
  padding: 10px 18px;
  background: var(--l-bg-soft);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--l-text);
  transition: all 0.2s var(--l-ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.l-sector-nav a:hover {
  background: var(--l-ink);
  color: white;
  border-color: var(--l-ink);
  transform: translateY(-1px);
}

.l-sector-block {
  padding: 90px 0;
  scroll-margin-top: 160px;
}

.l-sector-alt {
  background: var(--l-bg-soft);
}

.l-sector-detail {
  max-width: 1140px;
  margin: 0 auto;
}

.l-sector-head {
  padding: 48px;
  border-radius: var(--l-r-2xl);
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.l-sector-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.04) 1px, transparent 0);
  background-size: 16px 16px;
}

.l-sector-head > * { position: relative; }

.l-sector-big-icon {
  font-size: 80px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.l-sector-head h2 {
  font-family: var(--l-font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--l-ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.l-sector-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
}

.l-sector-grid h3 {
  font-family: var(--l-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 14px;
  margin-top: 28px;
  letter-spacing: -0.02em;
}

.l-sector-grid h3:first-child { margin-top: 0; }

.l-sector-grid > div > p {
  color: var(--l-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 15px;
}

.l-sector-highlight {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 32px 28px;
  position: sticky;
  top: 180px;
  box-shadow: var(--l-shadow-sm);
}

.l-sector-highlight h4 {
  font-family: var(--l-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--l-border);
  letter-spacing: -0.01em;
}

.l-sector-highlight ul {
  list-style: none;
}

.l-sector-highlight li {
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--l-text);
  line-height: 1.5;
}

/* === CONTACT PAGE === */
.l-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.l-contact-card {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s var(--l-ease);
  display: flex;
  flex-direction: column;
}

.l-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--l-shadow-md);
  border-color: var(--l-ink);
}

.l-contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--l-r-md);
  background: var(--cc-bg, var(--l-accent-soft));
  color: var(--cc-color, var(--l-accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-contact-icon svg { width: 26px; height: 26px; }

.l-contact-card h3 {
  font-family: var(--l-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.l-contact-card p {
  font-size: 14px;
  color: var(--l-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.l-contact-link {
  display: inline-block;
  color: var(--l-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  background: var(--l-bg-soft);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-md);
  transition: all 0.2s var(--l-ease);
}

.l-contact-link:hover {
  background: var(--l-ink);
  color: white;
  border-color: var(--l-ink);
}

/* FAQ */
.l-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.l-faq {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s var(--l-ease);
}

.l-faq[open] {
  box-shadow: var(--l-shadow-sm);
  border-color: var(--l-ink);
}

.l-faq summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--l-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  letter-spacing: -0.01em;
}

.l-faq summary::-webkit-details-marker { display: none; }

.l-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--l-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--l-ink);
  transition: all 0.3s var(--l-ease);
  line-height: 1;
  flex-shrink: 0;
}

.l-faq[open] .l-faq-icon {
  transform: rotate(45deg);
  background: var(--l-ink);
  color: white;
}

.l-faq-content {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--l-text-muted);
  line-height: 1.7;
}

.l-faq-content ul {
  margin-top: 12px;
  padding-left: 22px;
}

.l-faq-content strong { color: var(--l-ink); }

/* Legal */
.l-legal-block {
  max-width: 820px;
  margin: 0 auto 32px;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 44px;
  scroll-margin-top: 160px;
  position: relative;
}

.l-legal-block h2 {
  font-family: var(--l-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--l-ink);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.l-legal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--l-accent-soft);
  color: var(--l-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.l-legal-icon svg { width: 22px; height: 22px; }

.l-legal-block h3 {
  font-family: var(--l-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--l-ink);
  margin: 22px 0 10px;
  letter-spacing: -0.01em;
}

.l-legal-block p {
  color: var(--l-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 14.5px;
}

.l-legal-block p strong { color: var(--l-ink); }

.l-legal-block ul {
  color: var(--l-text-muted);
  padding-left: 22px;
  line-height: 1.85;
  font-size: 14.5px;
}

.l-legal-block a {
  color: var(--l-accent);
  font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .l-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .l-hero-visual { max-width: 600px; margin: 0 auto; }
  .l-whys-grid, .l-features-grid, .l-ai-grid, .l-sectors-preview, .l-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-footer-grid { grid-template-columns: 1fr 1fr; }
  .l-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .l-feature-split { grid-template-columns: 1fr; gap: 40px; }
  .l-feature-split.reverse .l-feature-text { order: 0; }
  .l-section { padding: 80px 0; }
  .l-steps::before { display: none; }
}

@media (max-width: 768px) {
  .l-container { padding: 0 20px; }

  .l-nav { display: none; }
  .l-nav.open {
    display: flex;
    position: fixed;
    top: var(--l-header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--l-border);
    box-shadow: var(--l-shadow-md);
  }
  .l-nav.open .l-nav-link { padding: 14px 16px; font-size: 15px; }
  .l-nav.open .l-nav-cta { margin: 12px 0 0; }
  .l-menu-toggle { display: flex; }

  .l-hero { padding: 60px 0 80px; }
  .l-hero-grid { gap: 40px; }
  .l-hero-title { font-size: 36px; letter-spacing: -0.025em; }
  .l-hero-lead { font-size: 16px; }
  .l-hero-trust { gap: 12px; font-size: 12px; }
  .l-page-hero { padding: 60px 0 40px; }

  .l-section { padding: 64px 0; }
  .l-section-header { margin-bottom: 40px; }
  .l-section-header h2 { font-size: 28px; }

  .l-whys-grid, .l-features-grid, .l-ai-grid,
  .l-sectors-preview, .l-steps, .l-stats-grid,
  .l-contact-grid {
    grid-template-columns: 1fr;
  }

  .l-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .l-stat:not(:last-child)::after { display: none; }
  .l-stat-value { font-size: 32px; }

  .l-mockup { transform: none; }
  .l-mockup-body { grid-template-columns: 48px 1fr; height: auto; }
  .l-mb-right { display: none; }
  .l-mb-grid { grid-template-columns: repeat(3, 1fr); }
  .l-float-card-1 { left: -10px; bottom: -20px; }
  .l-float-card-2 { right: -10px; top: -10px; }
  .l-fc2-stat { font-size: 18px; }

  .l-feature-split { gap: 32px; }
  .l-feature-text h2 { font-size: 24px; }
  .l-mini-features { grid-template-columns: repeat(2, 1fr); }

  .l-sector-head { flex-direction: column; text-align: center; padding: 32px 24px; gap: 16px; }
  .l-sector-big-icon { font-size: 60px; }
  .l-sector-grid { grid-template-columns: 1fr; gap: 28px; }
  .l-sector-highlight { position: static; }

  .l-cta-box { padding: 48px 28px; }
  .l-cta-box h2 { font-size: 26px; }
  .l-cta-box p { font-size: 15px; }

  .l-footer { padding: 56px 0 28px; }
  .l-footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .l-footer-bottom { flex-direction: column; align-items: flex-start; }

  .l-legal-block { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .l-mockup { transform: none; }
}

/* === REVEAL ANIMATION === */
.l-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--l-ease), transform 0.7s var(--l-ease);
}

.l-reveal.l-visible {
  opacity: 1;
  transform: translateY(0);
}
